forked from tommck/alexa-picobrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 900 Bytes
/
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
{
"name": "zymatic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "tsc && jasmine",
"test-watch": "nodemon -e ts --ignore node_modules/ --exec \"npm run test\" ",
"build": "rimraf dist && tsc -p tsconfig.build.json"
},
"author": "Tom McKearney",
"license": "ISC",
"dependencies": {
"alexa-sdk": "^1.0.6",
"lodash": "^4.17.3",
"moment": "^2.17.1",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"@types/jasmine": "^2.5.40",
"@types/node": "^4.0.30",
"@types/sinon": "^1.16.34",
"aws-lambda-mock-context": "^3.0.1",
"chai": "^3.5.0",
"jasmine": "^2.5.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"proxyquire": "^1.7.10",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"typemoq": "^1.0.3",
"typescript": "^2.4.2",
"watch": "latest"
}
}