-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.19 KB
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
50
51
52
53
54
{
"name": "@yocdev/access-control",
"version": "0.3.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"author": "Libright Zhong",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint src",
"test": "jest",
"ts": "ts-node"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/jest": "26.0.15",
"@types/lodash": "4.14.165",
"@types/node": "14.14.9",
"@typescript-eslint/eslint-plugin": "4.8.1",
"@typescript-eslint/parser": "4.8.1",
"@yocdev/eslint-config-node": "14.0.0",
"eslint": "7.14.0",
"husky": "4.3.6",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"ts-jest": "26.4.4",
"typescript": "4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": "eslint --cache"
},
"dependencies": {
"lodash": "4.17.20"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yocdev/access-control.git"
},
"bugs": {
"url": "https://github.com/yocdev/access-control/issues"
},
"homepage": "https://github.com/yocdev/access-control#readme",
"description": ""
}