forked from bespoken/virtual-alexa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "virtual-alexa",
"license": "Apache-2.0",
"private": false,
"version": "0.3.1",
"main": "./lib/src/Index.js",
"typings": "./lib/src/Index.d.ts",
"engines": {
"node": "> 6.0.0"
},
"files": [
"lib/src/*.js",
"lib/src/Index.d.ts",
"lib/src/SkillContext.d.ts",
"lib/src/SkillSession.d.ts",
"lib/src/VirtualAlexa.d.ts"
],
"nyc": {
"exclude": [
"lib/test/*.js",
"test/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git://github.com/bespoken/virtual-alexa.git"
},
"scripts": {
"docs": "gulp --gulpfile docs/gulpfile.js --cwd .",
"posttest": "nyc report --reporter=json --reporter=html && codecov -f coverage/*.json",
"pretest": "npm run tsc",
"test": "nyc mocha lib/**/*Test.js",
"tsc": "tsc",
"typings": "typings install"
},
"dependencies": {
"@types/uuid": "^3.4.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/node": "^6.0.88",
"chai": "^4.0.4",
"codecov": "^2.3.0",
"gulp": "^3.9.1",
"gulp-typedoc": "^2.0.3",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "^2.5.1"
}
}