-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "auth0-in-action",
"version": "1.0.3",
"description": "build authenticated google actions faster",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json --coverage",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"prepare": "npm run build",
"postversion": "git push && git push --tags",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekeitho/auth0-in-action.git"
},
"keywords": [
"auth0",
"google actions",
"actions on google"
],
"author": "ekeitho",
"license": "ISC",
"bugs": {
"url": "https://github.com/ekeitho/auth0-in-action/issues"
},
"homepage": "https://github.com/ekeitho/auth0-in-action#readme",
"devDependencies": {
"@types/jest": "^23.3.1",
"coveralls": "^3.0.2",
"jest": "^23.5.0",
"lcov-result-merger": "^3.1.0",
"prettier": "^1.14.2",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/auth0": "^2.9.4",
"actions-on-google": "^2.3.0",
"auth0": "^2.12.0"
}
}