-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "access-right",
"description": "A tiny helper library to handle access rights in your node backend",
"main": "src/index.js",
"scripts": {
"test": "jasmine",
"prepublish": "npm test",
"lint": "eslint src spec",
"build": "npm run lint && npm run test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ds82/access-right.git"
},
"keywords": [
"access",
"right",
"user",
"authentication",
"node",
"backend",
"express"
],
"author": "Dennis Saenger <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-ds82": "2.1.0",
"eslint-plugin-jasmine": "1.5.0",
"ghooks": "0.3.2",
"jasmine": "^3.5.0",
"semantic-release": "^15.13.28",
"validate-commit-msg": "1.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {},
"config": {
"ghooks": {
"commit-msg": "./node_modules/.bin/validate-commit-msg"
}
},
"version": "v2.0.3"
}