-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 830 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 830 Bytes
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
{
"name": "root",
"private": true,
"scripts": {
"init": "rm -rf packages/*/node_modules && rm -rf packages/*/lib && lerna bootstrap",
"commit": "npx git-cz",
"publish": "lerna publish",
"test:logger": "npx jest ./packages/logger/__tests__ --runInBand --forceExit",
"test:plugin-logger": "npx jest ./packages/plugin-logger/__tests__ --runInBand --forceExit"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.12.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^2.1.0",
"jest": "^24.9.0",
"ko-sleep": "^1.0.3",
"lerna": "^3.18.3",
"supertest": "^4.0.2",
"ts-jest": "^26.5.5",
"ts-node": "^8.8.2",
"typescript": "^3.6.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}