forked from dudyn5ky1/select-pure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 900 Bytes
/
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
{
"name": "select-pure",
"scripts": {
"release:alpha": "lerna version prerelease --conventional-commits --yes",
"release:graduate": "lerna version --conventional-graduate --conventional-commits --yes",
"serve:pure": "lerna run serve --scope=select-pure --stream",
"lint": "eslint packages",
"build": "lerna run build",
"build:watch": "lerna run build:watch --stream",
"test": "lerna run test --stream",
"test:mutations": "lerna run test:mutations --stream"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.22.0",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint-plugin-ordered-imports": "^0.5.0",
"lerna": "^4.0.0",
"pre-commit": "^1.2.2",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": "general"
}
}
}