-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "@factorten/auth0-source-control-extension-tools",
"version": "2.7.16",
"description": "Supporting tools for the Source Control extensions",
"main": "src/index.js",
"scripts": {
"release": "sh -c 'git tag $npm_package_version && git push --tags && npm publish --access=public --'",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
"test": "npm run test:pre && cross-env NODE_ENV=test nyc mocha tests/mocha.js ./tests/**/*.tests.js ./tests/*.tests.js",
"test:watch": "cross-env NODE_ENV=test mocha tests/mocha.js ./tests/**/*.tests.js ./tests/*.tests.js --watch",
"test:pre": "npm run test:clean && npm run lint:js",
"test:clean": "rimraf ./coverage && rimraf ./.nyc_output"
},
"author": "Auth0",
"license": "MIT",
"devDependencies": {
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"cross-env": "^3.1.2",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"expect": "^1.20.2",
"express": "^4.14.0",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"supertest": "^2.0.0"
},
"dependencies": {
"auth0": "^2.9.0",
"auth0-extension-tools": "^0.14.0",
"auth0-oauth2-express": "^1.1.8",
"bluebird": "^3.4.6",
"lodash": "^4.15.0",
"rimraf": "^2.5.4",
"superagent": "^3.5.2",
"winston": "^2.2.0"
},
"nyc": {
"include": [
"src/*.js",
"src/**/*.js",
"skip-tests/**/*.tests.js",
"skip-tests/*.tests.js"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": true
}
}