-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
65
66
67
68
69
{
"name": "@trigo/keycloak-api",
"version": "1.3.0",
"description": "Node.js Keycloak Admin API Wrapper",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "NODE_ENV=test nyc mocha --timeout 60000 specs",
"lint": "eslint '**/*.js'",
"prettify": "prettier --write '**/*.{js,jsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trigo-at/keycloak-api.git"
},
"author": "Christian Hubinger <christian@trigo.at>",
"license": "ISC",
"bugs": {
"url": "https://github.com/trigo-at/keycloak-api/issues"
},
"homepage": "https://github.com/trigo-at/keycloak-api#readme",
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"nyc": {
"extension": [
".js"
],
"exclude": [
"**/*.specs.js",
"specs",
"coverage",
".nyc_output",
"__testservices"
],
"reporter": [
"lcov",
"text-summary"
]
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-trigo": "^4.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^8.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^1.15.3",
"uuid": "^3.3.2"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"debug": "^4.3.4",
"form-data": "^4.0.0",
"node-fetch": "^2.6.11",
"ramda": "^0.25.0"
}
}