forked from keycloak/keycloak-nodejs-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 KB
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
{
"name": "@byiam/keycloak-admin",
"version": "1.14.0",
"description": "keycloak admin client",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\" \"test/*\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc -p ./tsconfig.release.json --pretty",
"test": "DEBUG=kc-admin mocha --require \"test/setup.js\" --require ts-node/register --recursive \"test/**/*.spec.ts\"",
"test:grep": "DEBUG=kc-admin mocha --require ts-node/register",
"coverage": "nyc npm run test",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"deploy": "npm run prepublishOnly && npm publish --access public"
},
"dependencies": {
"@types/debug": "^0.0.30",
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"camelize": "^1.0.0",
"debug": "^3.1.0",
"keycloak-js": "^11.0.2",
"lodash": "^4.17.10",
"node-window-polyfill": "^1.0.0",
"url-join": "^4.0.0",
"url-template": "^2.0.8"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.2",
"@types/faker": "^4.1.2",
"@types/lodash": "^4.14.108",
"@types/mocha": "^2.2.48",
"@types/node": "9.4.6",
"@types/url-join": "^0.8.2",
"@types/url-template": "^2.0.28",
"chai": "^4.1.2",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.14.3",
"rimraf": "^2.5.4",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"author": "wwwy3y3",
"license": "Apache-2.0"
}