-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@opensumi/ext-infra",
"version": "1.0.0",
"description": "Infra for opensumi extension",
"private": true,
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"postinstall": "cd packages/cli && yarn",
"dev": "cd packages/cli && yarn run watch",
"build": "cd packages/cli && yarn run compile",
"ci": "cd packages/cli && yarn test",
"release": "cd packages/cli && yarn release"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.4"
},
"lint-staged": {
"*.(t|j)sx?": [
"prettier --write",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": "https://github.com/opensumi/cli"
}