forked from auth0/auth0-deploy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "auth0-deploy-cli",
"version": "3.5.0",
"description": "A command line tool for deploying updates to your Auth0 tenant",
"main": "lib/index.js",
"bin": {
"a0deploy": "lib/index.js"
},
"scripts": {
"lint:js": "eslint --ignore-path .eslintignore --ignore-pattern webpack .",
"pretest": "npm run lint:js && rimraf ./.nyc_output",
"test": "cross-env NODE_ENV=test nyc mocha --recursive --require babel-register test",
"build": "rimraf ./lib && babel src -d lib",
"prepare": "npm run build",
"release": "git tag $npm_package_version && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/auth0-deploy-cli.git"
},
"author": "auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/auth0-deploy-cli/issues"
},
"readme": "README.md",
"homepage": "https://github.com/auth0/auth0-deploy-cli#readme",
"dependencies": {
"ajv": "^6.5.2",
"auth0": "^2.17.0",
"auth0-extension-tools": "^1.2.1",
"auth0-source-control-extension-tools": "~3.5.1",
"dot-prop": "^4.2.0",
"es6-template-strings": "^2.0.1",
"fs-extra": "^7.0.0",
"http-proxy-agent": "^2.0.0",
"https-proxy-agent": "^2.0.0",
"js-yaml": "^3.12.0",
"nconf": "^0.8.4",
"node-storage": "0.0.7",
"readline": "^1.3.0",
"sanitize-filename": "^1.6.1",
"superagent": "^3.5.2",
"winston": "^2.3.0",
"xregexp": "^3.1.1",
"yargs": "^12.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^3.1.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-import": "^2.12.0",
"expect": "^1.20.2",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^10.0.0",
"rmdir-sync": "^1.0.1",
"supertest": "^2.0.1"
}
}