forked from security-alert/security-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"private": true,
"name": "security-alert",
"version": "1.0.0",
"description": "security-alert monorepo",
"devDependencies": {
"lerna": "^4.0.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"updateSnapshot": "UPDATE_SNAPSHOT=1 npm test",
"versionup": "lerna version --conventional-commits",
"versionup:patch": "lerna version patch --conventional-commits",
"versionup:minor": "lerna version minor --conventional-commits",
"versionup:major": "lerna version major --conventional-commits",
"release": "lerna publish from-package",
"release:canary": "lerna publish --canary",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/security-alert/security-alert.git"
},
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/security-alert/security-alert/issues"
},
"homepage": "https://github.com/security-alert/security-alert",
"workspaces": [
"packages/*"
],
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}