forked from auth0/node-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
{
"name": "auth0",
"version": "2.0.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",
"rest-facade": "^1.2.7",
"url-join": "0.0.1",
"superagent": "^1.1.0"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"jsdoc": "^3.4.0",
"latodoc": "smeijer/latodoc",
"mocha": "^2.2.4",
"nock": "^3.1.1",
"sinon": "^1.17.1"
}
}