forked from rvowles/node-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.41 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
{
"name": "node-assistant",
"version": "1.1.0",
"main": "dist/app/index.js",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "",
"copy-js": "copyfiles app/**/*.js app/ca.crt app/resources/**/* dist && copyfiles creds.json package.json payload.json dist/app",
"build": "yarn run copy-js && yarn run tsc",
"build:watch": "yarn run build -- -- -w",
"build:deps": "node dist/app/build-deps install --prefix ./dist/app --production",
"build:zip": "cd dist/app && zip -r assistant.zip .",
"build:all": "yarn run copy-js && yarn run tsc && yarn run build:deps && yarn run build:zip",
"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\" -e \"app/generated-code/**/*\"",
"start": "DEBUG=node-assistant node dist/app/index"
},
"devDependencies": {
"tslint": "4.5.1",
"tslint-microsoft-contrib": "4.0.0",
"typescript": "2.2.1"
},
"dependencies": {
"@types/node": "^7.0.15",
"alexa-sdk": "^1.0.9",
"aws-sdk": "^2.51.0",
"copyfiles": "^1.2.0",
"debug": "^2.6.6",
"google-protobuf": "^3.2.0",
"googleapis": "^19.0.0",
"grpc": "^1.3.0",
"lame": "^1.2.4"
}
}