forked from keycloak/keycloak-nodejs-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "@keycloak/keycloak-admin-client",
"version": "1.14.1",
"description": "keycloak admin client",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"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 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"
},
"dependencies": {
"axios": "^0.21.0",
"camelize": "^1.0.0",
"keycloak-js": "^11.0.3",
"lodash": "^4.17.20",
"query-string": "^6.13.7",
"url-join": "^4.0.0",
"url-template": "^2.0.8"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.14",
"@types/faker": "^5.1.4",
"@types/lodash": "^4.14.165",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@types/url-join": "^4.0.0",
"@types/url-template": "^2.0.28",
"chai": "^4.1.2",
"faker": "^5.1.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"author": "wwwy3y3",
"license": "Apache-2.0"
}