-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
58
59
60
61
{
"name": "node-auth-barong",
"version": "1.0.0",
"description": "Express middleware for Barong Authorizer",
"main": "./lib",
"scripts": {
"test": "./node_modules/.bin/mocha",
"test-with-coverage": "nyc --reporter=text mocha",
"precommit": "npm test && lint-staged"
},
"lint-staged": {
"**/*.+(js|ts|yml|yaml|json)": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/openware/node-auth-barong.git"
},
"keywords": [
"jwt",
"verify",
"authorize",
"barong"
],
"author": "Openware",
"license": "ISC",
"bugs": {
"url": "https://github.com/openware/node-auth-barong/issues"
},
"homepage": "https://github.com/openware/node-auth-barong#readme",
"dependencies": {
"express": "^4.17.1",
"express-unless": "^0.5.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-utils": ">=1.4.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"mocha": "^6.2.0",
"node-mocks-http": "^1.7.6",
"nyc": "^14.1.1",
"prettier": "^1.18.2"
}
}