-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
50
51
52
53
54
55
56
57
{
"name": "@cobuildlab/rbac",
"version": "0.3.0",
"description": "",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest --collect-coverage",
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cobuildlab/rbac.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cobuildlab/rbac/issues"
},
"homepage": "https://github.com/cobuildlab/rbacd#readme",
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsdoc": "^30.4.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}