forked from keycloak/keycloak-nodejs-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "@keycloak/keycloak-admin-client",
"version": "21.0.0-dev.3",
"description": "keycloak admin client",
"type": "module",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\" \"test/*\"",
"build": "npm run clean && tsc --pretty",
"test": "TS_NODE_PROJECT=tsconfig.test.json mocha --recursive \"test/**/*.spec.ts\"",
"test:subset": "TS_NODE_PROJECT=tsconfig.test.json mocha --recursive --",
"test:grep": "TS_NODE_PROJECT=tsconfig.test.json mocha",
"coverage": "nyc npm run test",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"prepublishOnly": "npm run build",
"server:start": "./scripts/start-server.mjs"
},
"dependencies": {
"axios": "^0.27.2",
"camelize-ts": "^2.1.1",
"lodash-es": "^4.17.21",
"url-join": "^5.0.0",
"url-template": "^3.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.1.0",
"@octokit/rest": "^19.0.3",
"@types/chai": "^4.2.14",
"@types/lodash-es": "^4.17.5",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.3",
"chai": "^4.1.2",
"gunzip-maybe": "^1.4.2",
"mocha": "^10.0.0",
"node-fetch": "^3.2.10",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"tape-catch": "^1.0.6",
"tar-fs": "^2.1.1",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"author": "wwwy3y3",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/keycloak/keycloak-nodejs-admin-client.git"
},
"homepage": "https://www.keycloak.org/"
}