-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "node-cli-toolkit",
"scripts": {
"start": "ts-node .",
"test": "yarn jest --config jest.config.json --runInBand --verbose",
"test:watch": "yarn test --watch",
"test:debug": "DEBUG=* yarn test --verbose",
"test:watch:debug": "yarn test:debug --watch",
"sync-packages": "syncpack fix-mismatches",
"publish": "yarn run sync-packages && lerna run build && lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo"
},
"version": "0.0.0-development",
"main": "index.ts",
"license": "GPL-3.0",
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"cz-conventional-changelog": "3.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-watch-lerna-packages": "^1.1.0",
"lerna": "^3.20.0",
"semantic-release": "^17.0.4",
"semantic-release-monorepo": "^7.0.1",
"syncpack": "^5.0.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/tolicodes/node-cli-toolkit.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}