-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.01 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": "ceiba-router-common",
"version": "0.1.5",
"author": "lleaff",
"license": "MIT",
"scripts": {
"lerna": "lerna",
"testWatch": "jest --watch ",
"test": "jest",
"testWatch": "jest --watch",
"coverage": "jest --coverage",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"devDependencies": {
"lerna": "2.0.0-beta.36",
"jest": "^18.0.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0"
},
"jest": {
"testRegex": "/__tests__/.*\\.(test|spec)\\.jsx?$",
"rootDir": "packages",
"collectCoverageFrom": [
"**/*.js",
"!**/__tests__/**",
"!**/node_modules/**",
"!**/index.js",
"!**/webpack.config.js",
"!**/gulp-restructure-tree.js"
],
"transformIgnorePatterns": [
"/node_modules/!(gulp-restructure-tree|path-matcher|path-matcher-utils|unix-path)"
]
}
}