-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "alexa-ability",
"version": "0.12.0",
"description": "An Alexa skills framework for node",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "mocha test",
"prepublish": "in-publish && npm run test && npm run build || not-in-publish",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"postpublish": "git push origin master --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nickclaw/alexa-ability"
},
"bugs": {
"url": "http://github.com/nickclaw/alexa-ability/issues"
},
"keywords": [
"amazon",
"alexa",
"skills",
"skill",
"kit",
"echo",
"ability",
"framework",
"middleware",
"async"
],
"author": {
"name": "Nicholas Clawson",
"email": "[email protected]",
"url": "nickclaw.com"
},
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"lodash": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^6.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"in-publish": "^2.0.0",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}