-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.27 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
{
"name": "learn-phonetic-alexa",
"private": true,
"version": "0.0.0",
"description": "Alexa skill to aid in learning the phonetic alphabet",
"main": "dist/index.js",
"repository": "https://github.com/scottrangerio/learn-phonetic-alexa.git",
"author": "Scott Ranger",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-jest": "^20.0.3",
"flow-bin": "^0.46.0",
"jest": "^20.0.3",
"prettier": "^1.3.1",
"rimraf": "^2.6.1"
},
"scripts": {
"babel": "babel src/ -d dist/ --ignore __mocks__,__tests__",
"transpile": "npm run clean && npm run babel",
"flow": "flow",
"test": "jest",
"lint": "eslint src",
"clean": "rimraf dist",
"prettier": "prettier --single-quote 'src/**/*.js' --write",
"build": "npm run prettier && npm run lint && npm run flow && npm run test && npm run transpile"
},
"dependencies": {
"alexa-sdk": "^1.0.7",
"dotenv": "2.0.0",
"lodash.includes": "4.3.0"
}
}