-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"private": true,
"name": "alexa",
"version": "0.0.0",
"scripts": {
"bootstrap": "lerna bootstrap",
"prebuild": "npm run bootstrap",
"build": "npm-run-all --parallel build:dev build:production",
"build:dev": "NODE_ENV=development lerna exec -- rollup --config ../../rollup.config.js",
"build:production": "NODE_ENV=production lerna exec -- rollup --config ../../rollup.config.js",
"clean": "lerna clean",
"precommit": "lint-staged",
"lerna": "lerna",
"lint": "eslint ./packages",
"prepublish": "npm run test",
"publish": "lerna publish",
"pretest": "npm run build",
"test": "jest",
"posttest": "npm run lint"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-alexa-app": "^1.0.0",
"babel-register": "^6.18.0",
"eslint": "^3.9.1",
"eslint-plugin-jest": "^20.0.3",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"jest": "^20.0.4",
"lerna": "2.0.0-beta.30",
"lint-staged": "^7.0.0",
"npm-run-all": "^4.0.2",
"prettier": "^1.11.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.6.1"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always"
}
}