forked from conwnet/github1s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.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
{
"name": "github1s",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"chokidar": "^3.5.1",
"eslint": "^7.19.0",
"eslint-plugin-jsdoc": "^31.6.1",
"fs-extra": "^9.1.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"serve-handler": "^6.1.3",
"typescript": "^4.1.3"
},
"scripts": {
"postinstall": "husky install && ./scripts/postinstall.sh",
"clean-build": "./scripts/clean-build.sh",
"clean": "./scripts/clean.sh",
"build": "./scripts/build.sh",
"hash": "./scripts/hash.sh",
"package": "./scripts/package.sh",
"watch": "./scripts/watch.sh",
"serve": "node ./scripts/serve-dist.js",
"eslint": "eslint --ext .ts --ext .js ./src/vs ./extensions"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}