forked from Chevrotain/chevrotain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"lerna:version": "yarn && lerna version",
"lerna:publish": "lerna publish from-git --yes",
"ci": "npm-run-all format:validate build test",
"build": "lerna run build",
"test": "lerna run test",
"format:fix": "prettier --ignore-path .gitignore --write \"**/*.@(ts|js|json|md|yml)\"",
"format:validate": "prettier --ignore-path .gitignore --check \"**/*.@(ts|js|json|md|yml)\""
},
"prettier": {
"endOfLine": "lf",
"trailingComma": "none",
"semi": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"husky": "^4.0.9",
"lerna": "^3.15.0",
"lint-staged": "^10.0.1",
"lodash": "^4.17.14",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"prettier": "2.0.5",
"shx": "^0.3.2",
"cz-conventional-changelog": "3.2.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"ts-node": "^9.0.0"
}
}