-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "@jiaminghi/fs",
"version": "0.1.1",
"author": "JiaMing <[email protected]>",
"description": "Promise fs based on node.js fs",
"main": "lib/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jiaming743/fs.git"
},
"scripts": {
"clean": "rimraf lib types",
"type:check": "tsc --noEmit",
"lint": "eslint --ext js,ts src",
"format:check": "prettier --check .",
"format": "prettier --write .",
"check": "npm run type:check && npm run lint && npm run format:check",
"build": "tsc",
"prepare": "npm run clean && npm run check && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"pre-push": "npm run check"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jiaming743/fs/issues"
},
"keywords": [
"fs",
"node",
"promise"
],
"dependencies": {},
"homepage": "https://github.com/jiaming743/fs#readme",
"devDependencies": {
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}