-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "alexia-starter-kit",
"version": "1.1.0",
"description": "Starter kit project with sample Amazon Echo skill created using Alexia Framework",
"main": "src/app.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --opts .mocharc",
"test-lcov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --opts .mocharc -u exports --reporter spec",
"test:dev": "nodemon --exec \"mocha --opts .mocharc || true\"",
"start": "node server/start-http-server.js",
"mon": "nodemon --exec \"node server/start-http-server.js\"",
"deploy": "serverless deploy",
"gen": "node bin/generate.js"
},
"author": "",
"license": "Apache-2.0",
"keywords": [
"alexia",
"alexa",
"starter",
"kit",
"hello",
"world"
],
"dependencies": {
"alexia": "^2.4.0",
"hapi": "^15.2.0",
"i18next": "^4.1.0",
"i18next-node-fs-backend": "^0.1.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.1.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"serverless": "^1.1.0",
"sinon": "^1.17.6"
}
}