forked from Chevrotain/chevrotain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"lerna:version": "yarn && lerna version",
"lerna:publish": "lerna publish from-git --yes --no-verify-access",
"ci": "npm-run-all format:validate lint:validate build test",
"compile": "lerna run clean && tsc --build",
"compile:watch": "lerna run clean && tsc --build --watch",
"build": "lerna run build",
"test": "lerna run test",
"format:fix": "prettier --write \"**/*.@(ts|js|json|md|yml)\"",
"format:validate": "prettier --check \"**/*.@(ts|js|json|md|yml)\"",
"lint:fix": "eslint . --ext=js,ts --fix --max-warnings=0 --ignore-path=.gitignore",
"lint:validate": "eslint . --ext=js,ts --max-warnings=0 --ignore-path=.gitignore",
"prepare": "husky install"
},
"prettier": {
"endOfLine": "lf",
"trailingComma": "none",
"semi": false
},
"lint-staged": {
"*.{ts,js,json,md,yml}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix --max-warnings=0 --ignore-pattern=!.*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"nyc": "15.1.0",
"chai": "4.3.4",
"typescript": "4.4.4",
"fs-extra": "10.0.0",
"husky": "7.0.2",
"lerna": "4.0.0",
"lint-staged": "11.2.3",
"lodash": "4.17.21",
"mocha": "9.1.3",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"shx": "0.3.3",
"cz-conventional-changelog": "3.3.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"eslint": "8.0.1",
"@typescript-eslint/parser": "5.0.0",
"@typescript-eslint/eslint-plugin": "5.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"source-map-support": "0.5.20",
"@istanbuljs/schema": "0.1.3"
}
}