This repository was archived by the owner on Jul 17, 2023. It is now read-only.
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
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "auth0-deploy-cli",
"version": "7.6.0",
"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",
"pretest": "rimraf ./.nyc_output",
"test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*'",
"build": "rimraf ./lib && npx tsc",
"dev": "npx tsc --watch",
"prepare": "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": {
"@types/nconf": "^0.10.2",
"ajv": "^6.12.6",
"auth0": "^2.40.0",
"dot-prop": "^5.2.0",
"fs-extra": "^7.0.0",
"global-agent": "^2.1.12",
"js-yaml": "^4.1.0",
"lodash": "^4.17.20",
"mkdirp": "^0.5.1",
"nconf": "^0.11.0",
"promise-pool-executor": "^1.1.1",
"sanitize-filename": "^1.6.1",
"winston": "^2.3.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/parser": "^5.14.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^3.1.4",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.20.2",
"husky": "^7.0.4",
"kacl": "^1.1.1",
"mocha": "^9.1.3",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"rmdir-sync": "^1.0.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.6.2"
}
}