forked from 8log/keycloak-request-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "keycloak-request-token",
"version": "0.2.0-dev",
"description": "Simple utility to request a token from a Keycloak Server",
"main": "index.js",
"scripts": {
"test": "tape test/*-test.js | tap-spec",
"lint": "eslint index.js example.js test/*.js",
"prepublish": "./node_modules/nsp/bin/nsp check",
"coverage": "istanbul cover tape test/*.js",
"docs": "./node_modules/.bin/jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js"
},
"keywords": [
"Keycloak",
"Node.js"
],
"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-request-token"
},
"bugs": "https://github.com/bucharest-gold/keycloak-request-token/issues",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^3.9.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-react": "^6.5.0",
"eslint-plugin-standard": "^2.0.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.2",
"nsp": "^2.6.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.2"
}
}