forked from sheerun/bower-away
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 828 Bytes
/
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
{
"private": true,
"devDependencies": {
"babel-cli": "7.0.0-beta.2",
"babel-preset-env": "2.0.0-beta.2",
"husky": "^0.14.3",
"jest-cli": "^21.2.0",
"lint-staged": "^4.2.3",
"prettier-standard": "^7.0.1"
},
"scripts": {
"format": "prettier-standard 'packages/**/*.js'",
"build": "babel packages --out-dir packages --ignore '**/node_modules'",
"test": "jest",
"precommit": "lint-staged"
},
"engines": {
"node": ">= 8.x",
"npm": ">= 3.x <= 5.x",
"yarn": ">= 1.1.0"
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add",
"jest --bail --findRelatedTests"
]
},
"jest": {
"transformIgnorePatterns": [
"/"
],
"projects": [
"<rootDir>/packages/*"
]
},
"workspaces": [
"packages/bower-away"
]
}