-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"adio": "^1.2.1",
"all-contributors-cli": "^5.6.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.7.1",
"camelcase": "^5.2.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.3",
"cross-env": "^7.0.2",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-jest": "^22.17.0",
"execa": "^1.0.0",
"fs-extra": "^9.0.0",
"get-yarn-workspaces": "^1.0.2",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lerna": "^3.13.3",
"lint-staged": "^8.1.5",
"lodash.get": "^4.4.2",
"mdbid": "^1.0.0",
"merge": "^1.2.1",
"prettier": "^1.14.2",
"ramda": "^0.25.0",
"rimraf": "^3.0.2",
"sinon": "^7.2.7",
"verdaccio": "^3.11.6"
},
"scripts": {
"build": "lerna exec -- rm -rf dist && lerna run build",
"test:src": "jest --config=jest.config.js",
"test:dist": "cross-env SOURCE_DIR=dist jest --config=jest.config.js",
"test:coverage": "yarn test:src --coverage",
"test:coverage:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"lint-staged": "lint-staged",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lerna:version": "lerna version --yes",
"lerna:publish": "lerna publish --yes",
"lerna:rm-dist": "lerna exec -- rm -rf dist",
"release-latest": "node ./scripts/releaseLatest.js",
"postinstall": "node ./scripts/linkPackages.js",
"prepack": "node scripts/prepack.js",
"cz": "git-cz"
},
"name": "commodo",
"pre-commit": [
"lint-staged"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix",
"flow focus-check",
"jest --config jest.config.js --findRelatedTests",
"git add"
]
}
}