-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 857 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 857 Bytes
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
{
"name": "predix-acs-client",
"version": "1.4.3",
"description": "Node module to check authorization for an action with ACS protecting REST endpoints. This library does not provide ACS administration functionality.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec test/acs.spec",
"coverage": "istanbul cover _mocha -- -R spec test/acs.spec"
},
"repository": {
"type": "git",
"url": "https://github.com/PredixDev/predix-acs-client.git"
},
"keywords": [
"predix",
"acs",
"client"
],
"author": "Ben Sykes <ben.sykes@ge.com>",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"sinon": "^1.17.7"
},
"dependencies": {
"debug": "^2.6.9",
"predix-uaa-client": "^1.3.5",
"request": "^2.85.0"
}
}