-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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": "mode-mask",
"version": "2.2.1",
"description": "Manage mode and permissions with masks/flags",
"repository": {
"type": "git",
"url": "git+https://github.com/lxghtless/mode-mask.git"
},
"author": "lxghtless",
"license": "ISC",
"url": "https://github.com/lxghtless/mode-mask",
"homepage": "https://github.com/lxghtless/mode-mask",
"keywords": [
"mode",
"permission",
"mask"
],
"scripts": {
"build": "rimraf dist && tsc --project src",
"test": "eslint ./src/**.* && intern",
"clean": "rimraf .nyc_output coverage dist",
"lint": "tsc --noEmit && eslint ./src/**.* ./test/**.* --fix"
},
"main": "dist/index.js",
"files": [
"dist",
"src/*.ts"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"intern": "^4.9.1",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}