-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "node-assistant",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "rm -rf target",
"prebuild": "",
"copy-js": "copyfiles app/**/*.js app/ca.crt app/resources/**/* target/",
"build": "yarn run copy-js && yarn run tsc",
"build:watch": "yarn run build -- -- -w",
"service": "cd ./target/app && node $NODE_DEBUG_OPTION ./service.js -p ../../dev-config.yaml",
"test": "yarn run mocha -- --opts mocha.opts",
"test:watch": "yarn run mocha --opts mocha.opts --watch",
"mocha": "node ./node_modules/mocha/bin/mocha",
"tsc": "node ./node_modules/typescript/bin/tsc",
"lint": "node ./node_modules/tslint/bin/tslint -r ./node_modules/tslint-microsoft-contrib/ \"app/**/*.ts\" \"spec/**/*.ts\" -e \"app/generated-code/**/*\""
},
"devDependencies": {
"tslint": "4.5.1",
"tslint-microsoft-contrib": "4.0.0",
"typescript": "2.2.1"
},
"dependencies": {
"@types/node": "^7.0.15",
"copyfiles": "^1.2.0",
"debug": "^2.6.6",
"google-protobuf": "^3.2.0",
"googleapis": "^19.0.0",
"grpc": "^1.3.0",
"node-record-lpcm16": "^0.3.0",
"snowboy": "^1.1.0",
"speaker": "^0.3.0"
}
}