forked from auth0/node-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "auth0",
"version": "2.25.1",
"description": "SDK for Auth0 API v2",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "mocha --reporter spec ./test/**/*.tests.js ./test/*.tests.js",
"test:ci": "nyc npm run test -- --forbid-only --reporter mocha-junit-reporter",
"test:coverage": "codecov",
"test:watch": "cross-env NODE_ENV=test mocha --timeout 5000 ./test/**/*.tests.js ./test/*.tests.js --watch",
"jsdoc:generate": "jsdoc --configure .jsdoc.json --verbose",
"version": "node ./scripts/release.js",
"precommit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/node-auth0"
},
"keywords": [
"auth0",
"api"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/node-auth0/issues"
},
"homepage": "https://github.com/auth0/node-auth0",
"dependencies": {
"axios": "^0.19.2",
"bluebird": "^3.5.5",
"form-data": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.8.0",
"lru-memoizer": "^2.1.0",
"object.assign": "^4.1.0",
"rest-facade": "^1.12.0",
"retry": "^0.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"husky": "^3.0.1",
"jsdoc": "^3.6.3",
"json-loader": "^0.5.7",
"jws": "^3.2.2",
"minami": "^1.2.3",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"moment": "^2.24.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"pem": "^1.14.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"proxyquire": "^2.1.1",
"sinon": "^7.3.2",
"string-replace-webpack-plugin": "0.1.3",
"webpack": "^4.36.1"
}
}