-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "auth0-deploy-cli",
"version": "8.29.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 . && kacl lint",
"lint": "eslint . && kacl lint",
"format": "npx prettier --write .",
"test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*' --exclude 'test/e2e/*' --timeout 20000",
"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": "^5.4.0",
"dot-prop": "^5.3.0",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"mkdirp": "^1.0.4",
"nconf": "^0.13.0",
"promise-pool-executor": "^1.1.1",
"sanitize-filename": "^1.6.3",
"undici": "^7.22.0",
"winston": "^3.19.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.17.24",
"@types/mocha": "^10.0.10",
"@types/nconf": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"kacl": "^1.1.1",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"node-fetch": "^2.7.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"rimraf": "^3.0.2",
"rmdir-sync": "^1.0.1",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"ts-mocha": "^11.1.0",
"typescript": "~5.9.3"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [
"auth0",
"cli"
],
"overrides": {
"istanbul-reports": "3.1.4"
}
}