-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.07 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
{
"name": "@quantcdn/quant-cli",
"version": "6.1.0",
"description": "Deploy tools for QuantCDN",
"type": "module",
"main": "cli.js",
"packageManager": "npm",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "mocha 'tests/**/**/*.test.mjs'",
"test:watch": "mocha 'tests/**/**/*.test.mjs' --watch",
"test:coverage": "c8 mocha 'tests/**/**/*.test.mjs'",
"test:config": "mocha 'tests/unit/config.test.mjs'",
"test:deploy": "mocha 'tests/unit/commands/deploy.test.mjs'",
"test:file": "mocha 'tests/unit/commands/file.test.mjs'",
"test:page": "mocha 'tests/unit/commands/page.test.mjs'",
"test:redirect": "mocha 'tests/unit/commands/redirect.test.mjs'",
"test:purge": "mocha 'tests/unit/commands/purge.test.mjs'",
"test:unpublish": "mocha 'tests/unit/commands/unpublish.test.mjs'",
"test:delete": "mocha 'tests/unit/commands/delete.test.mjs'",
"test:functions": "mocha 'tests/unit/commands/functions.test.mjs'",
"lint": "eslint cli.js src tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantcdn/node-cli.git"
},
"author": "Stuart Rowlands <stuart@quantcdn.io>",
"contributors": [
"Steven Worley <steve@quantcdn.io>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/quantcdn/node-cli/issues"
},
"homepage": "https://github.com/quantcdn/node-cli#readme",
"bin": {
"quant": "cli.js"
},
"files": [
"cli.js",
"/src"
],
"dependencies": {
"@clack/core": "^1.0.0",
"@clack/prompts": "^1.0.0",
"axios": "^1.13.0",
"big-json": "^3.1.0",
"chalk": "^5.6.0",
"glob": "^11.1.0",
"html-entities": "^2.6.0",
"md5-file": "^5.0.0",
"mime-types": "^3.0.0",
"papaparse": "^5.5.0",
"picocolors": "^1.0.0",
"yargs": "^18.0.0"
},
"overrides": {
"diff": "^8.0.3"
},
"devDependencies": {
"axios-mock-adapter": "^2.1.0",
"c8": "^10.1.0",
"chai": "^5.3.0",
"eslint": "^9.39.0",
"globals": "^16.0.0",
"mocha": "^11.7.5",
"nock": "^14.0.0",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.0"
}
}