-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "voice-assistant-js",
"version": "0.3.2",
"main": "dist/src/Container.js",
"types": "./dist/typings.d.ts",
"devDependencies": {
"@types/alexa-sdk": "^1.0.4",
"@types/express": "^4.0.35",
"@types/jest": "^19.2.3",
"@types/node": "^7.0.18",
"actions-on-google": "https://github.com/actions-on-google/actions-on-google-nodejs",
"alexa-sdk": "^1.0.9",
"express": "^4.15.2",
"jest": "^20.0.1",
"standard": "^10.0.2",
"ts-jest": "^20.0.0",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"tslint-config-standard": "^5.0.2",
"typescript": "^2.3.2",
"typescript-standard": "^0.3.30"
},
"dependencies": {
"i18next": "^8.2.1",
"reflect-metadata": "^0.1.10",
"tsdi": "^0.9.5",
"typescript-debug": "^0.1.0"
},
"peerDependencies": {
"actions-on-google": "if you want to use google/api-ai requests",
"alexa-sdk": "if you want to use alexa requests",
"express": "if you want to use google/api-ai requests"
},
"scripts": {
"test": "npm run cleanup && jest",
"test:watch": "npm run cleanup && jest --watch",
"test:cov": "jest --coverage",
"coverage:upload": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"cleanup": "rm -rf dist/* || true",
"cs": "standard --fix --pretty ./**/*.ts",
"lint": "tslint --type-check --fix --project tsconfig.json",
"transpile": "tsc --project tsconfig.json",
"build": "NODE_ENV=production && npm run cleanup && npm run lint && npm run cs && npm run cleanup && npm run transpile",
"prepublish": "npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"cache": false,
"verbose": true,
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"collectCoverageFrom": [
"src/**.{ts}"
],
"collectCoverage": false,
"coverageDirectory": "coverage",
"mapCoverage": true,
"testMatch": [
"**/tests/**/*Spec.ts"
]
}
}