forked from auth0/node-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "auth0",
"version": "2.5.0",
"description": "SDK for Auth0 API v2",
"main": "src/index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec $(find ./test -name *.tests.js) && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test-watch": "NODE_ENV=test mocha --timeout 5000 $(find ./test -name *.tests.js) --watch",
"docs-build": "jsdoc src/**/*.js -d docs -t node_modules/latodoc -R README.md"
},
"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": {
"bluebird": "^2.10.2",
"request": "^2.75.0",
"rest-facade": "^1.2.7",
"url-join": "0.0.1"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"jsdoc": "^3.4.0",
"json-loader": "^0.5.4",
"latodoc": "smeijer/latodoc",
"mocha": "^2.2.4",
"nock": "^3.1.1",
"sinon": "^1.17.1",
"string-replace-webpack-plugin": "0.0.3",
"webpack": "^1.12.14"
}
}