forked from 8log/keycloak-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
62
63
64
{
"name": "keycloak-admin-client",
"version": "0.12.0",
"description": "Client for contacting the Keycloak Admin REST API",
"main": "index.js",
"scripts": {
"lint": "eslint lib/*.js test/*.js index.js example.js example-with-request.js",
"test": "nyc tape test/*-test.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"prepublish": "./node_modules/nsp/bin/nsp check",
"docs": "./node_modules/.bin/jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js ./lib/*.js",
"dependencyCheck": "szero . --ci --ignore keycloak"
},
"keywords": [
"Keycloak",
"Node.js",
"REST"
],
"files": [
"package.json",
"README.md",
"index.js",
"example.js",
"lib"
],
"author": {
"name": "Red Hat, Inc."
},
"maintainers": {
"name": "Lucas Holmquist",
"email": "lholmqui@redhat.com"
},
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "bucharest-gold/keycloak-admin-client"
},
"bugs": "https://github.com/bucharest-gold/keycloak-admin-client/issues",
"license": "Apache-2.0",
"dependencies": {
"keycloak-request-token": "^0.1.0",
"request": "^2.69.0"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"eslint": "^4.1.1",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-standard": "^3.0.1",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.2",
"nsp": "^2.6.1",
"nyc": "^11.0.1",
"szero": "^1.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
}
}