forked from jaredpalmer/after.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"private": true,
"bugs": "https://github.com/jaredpalmer/after.js/issues",
"homepage": "https://github.com/jaredpalmer/after.js#readme",
"devDependencies": {
"eslint": "^4.6.1",
"husky": "^0.14.3",
"jest": "21.2.1",
"lerna": "^2.0.0-rc.5",
"lerna-changelog": "^0.7.0",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4",
"ps-tree": "1.1.0",
"semver": "5.4.1",
"shelljs": "^0.7.8"
},
"scripts": {
"e2e": "jest --config ./test/jest.config.json --verbose --no-cache ",
"clean": "lerna clean --yes && node ./scripts/clean.js",
"bootstrap": "lerna bootstrap && node ./scripts/bootstrap.js",
"postinstall": "npm run clean && npm run bootstrap",
"changelog": "lerna-changelog",
"format":
"prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["prettier --trailing-comma es5 --single-quote --write", "git add"]
},
"dependencies": {},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/coverage/",
"<rootDir>/node_modules/",
"<rootDir>/examples/"
],
"collectCoverageFrom": ["**/*.js"],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/packages/*/node_modules/",
"<rootDir>/examples/",
"<rootDir>/coverage/"
]
}
}