-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 1.43 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
57
58
59
60
61
62
63
64
65
{
"name": "lerna-wizard",
"version": "1.1.1",
"description": "",
"main": "index.js",
"bin": {
"lerna-wizard": "./bin/lerna-wizard"
},
"scripts": {
"test": "jest",
"ciTest": "jest --coverage",
"dev": "rimraf dist&&babel -w src -d dist",
"preversion": "rimraf dist&&jest&&babel src -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/webuniverseio/lerna-wizard/"
},
"keywords": [
"monorepo",
"lerna",
"wizard"
],
"author": "Sergey Zarouski",
"license": "MIT",
"bugs": {
"url": "https://github.com/webuniverseio/lerna-wizard/issues"
},
"homepage": "https://github.com/webuniverseio/lerna-wizard/",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^19.0.0",
"jest": "^24.9.0",
"rimraf": "^2.7.1"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"cross-spawn-promise": "^0.10.1",
"inquirer": "^6.5.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/dist/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/example/**",
"!src/index.js",
"!src/flags/create.js"
],
"coverageThreshold": {
"global": {
"branches": 87,
"functions": 78,
"lines": 91,
"statements": 91
}
}
}
}