-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.41 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
{
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --concurrency=2",
"lint": "lerna run lint",
"test:unit": "LERNA_TEST_RUN=1 NODE_ENV=test nyc lerna run test:unit",
"test:e2e": "lerna run test:e2e --stream",
"report:coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"changelog": "npx lerna-changelog",
"publish": "lerna publish --conventional-commits",
"deploy": "npm run deploy:cookbook && yarn run deploy:cheatsheet",
"deploy:cookbook": "node scripts/deploy cookbook",
"deploy:cheatsheet": "node scripts/deploy cheatsheet",
"validate:circleci": "circleci config validate -c .circleci/config.yml"
},
"engines": {
"node": ">= 8.4.0",
"npm": ">= 2.x <= 5.x"
},
"dependencies": {
"@syncano/cli": "^0.14.0",
"babel-eslint": "^8.0.1",
"chalk": "^2.4.1",
"git-branch": "^1.0.0",
"lerna": "3.8.5",
"lerna-changelog": "^0.7.0",
"lint-staged": "^6.1.0",
"standard": "^11.0.1"
},
"devDependencies": {
"codecov": "^3.0.0",
"concurrently": "^4.1.0",
"nyc": "^11.4.1"
},
"nyc": {
"exclude": [
"scripts",
"docs",
"**/e2e-tests/**",
"**/template/**",
"**/lib/**",
"**/bin/**",
"**/coverage/**",
"**/dist/**",
"**/tests/**",
"**/test/**"
],
"reporter": [
"text",
"lcov"
],
"all": true
}
}