This repository has been archived by the owner on Nov 18, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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": "7.0.1",
"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.2.0",
"ava": "^0.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.7.1",
"isomorphic-fetch": "^2.2.1",
"npm-run-all": "^3.1.0",
"rollup": "^0.36.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"sinon": "^1.17.6"
},
"keywords": [
"alexa",
"echo",
"skill",
"amazon",
"lambda"
],
"ava": {
"babel": "inherit"
}
}