-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "@dazn/chaos-squirrel",
"private": true,
"version": "0.0.0",
"description": "JavaScript Chaos",
"scripts": {
"lerna": "lerna",
"postinstall": "lerna bootstrap",
"lint": "eslint --ext ts .",
"test": "lerna exec --concurrency 1 -- npm test",
"build": "lerna run build",
"new-version": "lerna version --conventional-commits --create-release github --yes",
"publish": "lerna publish from-package --yes --registry https://registry.npmjs.org"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getndazn/chaos-squirrel.git"
},
"author": "Simon Tabor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/getndazn/chaos-squirrel/issues"
},
"homepage": "https://github.com/getndazn/chaos-squirrel#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}