-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 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
{
"name": "zilla-script",
"version": "1.1.7",
"type": "module",
"description": "Simple testing framework for REST API testing",
"keywords": [
"cobbzilla",
"util",
"utils",
"utility",
"typescript"
],
"homepage": "https://github.com/cobbzilla/zilla-script",
"author": "Jonathan Cobb <bqppl0m2@duck.com> (https://github.com/cobbzilla)",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/cobbzilla"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cobbzilla/zilla-script.git"
},
"license": "Apache-2.0",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"test": "if [[ -z \"$SKIP_TESTS\" ]] ; then mocha ./test/*.spec.ts; else echo 'Skipping tests due to SKIP_TESTS env variable'; fi",
"release": "pnpm tsc && pnpm lint && pnpm test"
},
"main": "./lib/esm/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": "./lib/esm/index.js"
},
"files": [
"lib/",
"src/**/*.ts"
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@types/busboy": "^1.5.4",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"busboy": "^1.6.0",
"chai": "^4.3.6",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"h3": "^1.15.3",
"handlebars": "^4.7.8",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"shasum": "^1.0.2",
"tslint-config-prettier": "^1.18.0",
"tsx": "^4.15.4",
"typescript": "^5.7.3",
"zilla-util": "^1.2.27"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"axios": "^1.10.0",
"form-data": "^4.0.3",
"jsonpath-plus": "^10.3.0"
}
}