-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "condor-authorize",
"version": "0.0.1",
"description": "Condor Authorization Middleware",
"main": "index.js",
"scripts": {
"test": "istanbul cover jasmine",
"posttest": "npm run lint && nsp check && istanbul check-coverage",
"lint": "eslint .",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsu/condor-authorize.git"
},
"keywords": [
"condor",
"middleware",
"authorization",
"grpc"
],
"author": "Cesar Salazar @ Devsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/devsu/condor-authorize/issues"
},
"homepage": "https://github.com/devsu/condor-authorize#readme",
"devDependencies": {
"bluebird": "^3.5.0",
"condor-framework": "^1.2.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-devsu-node": "0.0.3",
"fs-extra": "^2.1.2",
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"jasmine-spy": "0.0.2",
"nsp": "^2.6.3",
"proxyquire": "^1.7.11"
},
"dependencies": {},
"peerDependencies": {
"condor-framework": ">= 1.2.0 < 2"
}
}