forked from auth0/auth0-deploy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@factorten/auth0-deploy-cli",
"version": "1.0.21",
"description": "A command line tool for deploying updates to your Auth0 tenant",
"main": "index.js",
"bin": {
"a0deploy": "./index.js"
},
"scripts": {
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
"test": "npm run test:pre && cross-env NODE_ENV=test nyc mocha test/mocha.js ./test/**/*.tests.js ./test/*.tests.js",
"test:watch": "cross-env NODE_ENV=test mocha test/mocha.js ./test/**/*.tests.js ./test/*.tests.js --watch",
"test:pre": "npm run test:clean && npm run lint:js",
"test:clean": "rimraf ./coverage && rimraf ./.nyc_output",
"build": "babel src -d lib",
"prepublish": "npm run build",
"release": "sh -c 'git tag $npm_package_version && git push --tags && npm publish --access=public --'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/auth0-deploy-cli.git"
},
"author": "mostekcm",
"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": {
"auth0": "^2.9.1",
"auth0-extension-tools": "^1.2.1",
"@factorten/auth0-source-control-extension-tools": "^2.7.16",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"bluebird": "^3.4.6",
"commander": "^2.9.0",
"fs": "0.0.1-security",
"http-proxy-agent": "^2.0.0",
"https-proxy-agent": "^2.0.0",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"nconf": "^0.8.4",
"node-storage": "0.0.7",
"path": "^0.12.7",
"readline": "^1.3.0",
"superagent": "^3.5.2",
"username": "^2.2.2",
"winston": "^2.3.0",
"xregexp": "^3.1.1"
},
"devDependencies": {
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"cross-env": "^3.1.4",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"expect": "^1.20.2",
"mkdirp": "^0.5.1",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"rmdir-sync": "^1.0.1",
"supertest": "^2.0.1"
}
}