This repository has been archived by the owner on Jul 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 1.92 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-source-control-extension-tools",
"version": "6.0.0",
"description": "Supporting tools for the Source Control extensions",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"prepare": "npm run build",
"release": "git tag $npm_package_version && git push --tags && npm publish",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
"lint:fix": "eslint --fix --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": "cross-env NODE_ENV=test mocha tests/mocha.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",
"dependencies": {
"ajv": "^6.5.2",
"babel-preset-env": "^1.7.0",
"dot-prop": "^4.2.0",
"lodash": "^4.17.20",
"promise-pool-executor": "^1.1.1",
"rimraf": "^2.5.4",
"winston": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.1.6",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^9.0.0",
"nyc": "^15.1.0"
},
"nyc": {
"include": [
"src/*.js",
"src/**/*.js",
"skip-tests/**/*.tests.js",
"skip-tests/*.tests.js"
],
"require": [
"@babel/register"
],
"sourceMap": true,
"instrument": true
}
}