-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "auth0-log-extension-tools",
"version": "1.3.10",
"description": "A set of tools for logging",
"main": "src/index.js",
"dependencies": {
"auth0-extension-tools": "^1.2.1",
"bluebird": "3.4.6",
"lodash": "4.17.11",
"superagent": "3.8.3"
},
"devDependencies": {
"autochecker": "^0.9.2",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"cross-env": "^3.2.4",
"eslint": "^3.9.1",
"eslint-config-auth0-base": "12.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"faucet": "0.0.1",
"jsonwebtoken": "^7.1.9",
"mocha": "^3.2.0",
"nock": "^9.0.11",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"tape": "^4.6.2"
},
"scripts": {
"release": "git tag $npm_package_version && git push --tags && npm publish",
"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",
"test:watch": "npm run test:pre && cross-env NODE_ENV=test mocha ./tests/mocha.js ./tests/**/*.tests.js --watch",
"test:pre": "npm run test:clean",
"test:clean": "rimraf ./coverage && rimraf ./.nyc_output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-extensions/auth0-log-extension-tools.git"
},
"keywords": [
"auth0",
"extensions",
"express",
"webtask"
],
"author": "Auth0",
"license": "MIT",
"nyc": {
"include": [
"src/*.js",
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": true
}
}