forked from cameronhunter/alexa-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
56
57
58
59
60
61
62
63
{
"author": {
"name": "Cameron Hunter",
"email": "[email protected]",
"url": "http://cameronhunter.co.uk"
},
"name": "alexa-annotations",
"description": "Create Alexa skills for the Amazon Echo, easily.",
"version": "5.0.0",
"main": "build/index.min.js",
"jsnext:main": "src/index.js",
"license": "MIT",
"repository": "cameronhunter/alexa-lambda-skill",
"files": [
"build",
"src"
],
"scripts": {
"build:dev": "rollup -c",
"build:production": "NODE_ENV=production rollup -c",
"build": "npm-run-all --parallel build:dev build:production",
"pretest": "npm run build",
"test": "ava --require babel-register --require babel-polyfill test/**/*test.js example/**/*test.js",
"posttest": "npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"lint": "eslint src/**/*.js example/**/*.js"
},
"dependencies": {
"bluebird": "^3.3.4",
"object-values": "^1.0.0"
},
"devDependencies": {
"alexa-response": "^3.0.1",
"ava": "^0.13.0",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.6.0",
"isomorphic-fetch": "^2.2.1",
"npm-run-all": "^1.7.0",
"rollup": "^0.25.7",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-inject": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"sinon": "^1.17.3"
},
"keywords": [
"alexa",
"echo",
"skill",
"amazon",
"lambda"
],
"ava": {
"babel": "inherit"
}
}