forked from auth0/auth0-deploy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
{
"name": "auth0-deploy-cli",
"version": "7.24.1",
"description": "A command line tool for deploying updates to your Auth0 tenant",
"main": "lib/index.js",
"bin": {
"a0deploy": "lib/index.js"
},
"scripts": {
"lint:fix": "eslint --fix --ignore-path .eslintignore --ignore-pattern webpack . && kacl lint",
"lint": "eslint --ignore-path .eslintignore --ignore-pattern webpack . && kacl lint",
"format": "npx prettier --write .",
"test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*' --exclude 'test/e2e/*' --timeout 7500",
"test:e2e:node-module": "ts-mocha -p tsconfig.json --recursive 'test/e2e/*.test*' --timeout 120000",
"test:e2e:cli": "sh ./test/e2e/e2e-cli.sh",
"test:coverage": "nyc npm run test && nyc report --reporter=lcov",
"build": "rimraf ./lib && npx tsc",
"dev": "npx tsc --watch",
"prepublishOnly": "npm run build",
"preversion": "kacl prerelease",
"version": "kacl release && git add CHANGELOG.md"
},
"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.12.6",
"auth0": "^3.0.0",
"dot-prop": "^5.2.0",
"fs-extra": "^10.1.0",
"global-agent": "^2.1.12",
"js-yaml": "^4.1.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"nconf": "^0.12.0",
"promise-pool-executor": "^1.1.1",
"sanitize-filename": "^1.6.1",
"winston": "^3.7.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.187",
"@types/mocha": "^10.0.0",
"@types/nconf": "^0.10.3",
"@typescript-eslint/parser": "^5.30.3",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"kacl": "^1.1.1",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nyc": "^15.0.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"rmdir-sync": "^1.0.1",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.4",
"zlib": "^1.0.5"
},
"overrides": {
"istanbul-reports": "3.1.4"
}
}