-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.57 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-ssml",
"version": "0.5.0",
"description": "JSX for Alexa Skills Kit SSML",
"main": "lib/index.js",
"jsnext:main": "src/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-ssml"
},
"bugs": {
"url": "http://github.com/nickclaw/alexa-ssml/issues"
},
"keywords": [
"alexa",
"skills",
"skill",
"kit",
"jsx",
"ssml",
"speech",
"markup",
"echo",
"ability"
],
"author": {
"name": "Nicholas Clawson",
"email": "nickclaw@gmail.com",
"url": "nickclaw.com"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.0.1",
"tv4": "^1.2.7",
"xmlbuilder": "^4.2.1"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-eslint": "^4.1.8",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"in-publish": "^2.0.0",
"mocha": "^2.4.4"
}
}