-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "@openzim/wombat-setup",
"type": "module",
"version": "5.3.1-dev0",
"license": "GPL-3.0-or-later",
"author": "openZIM",
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "0.4.4",
"ava": "^6.2.0",
"babel-eslint": "^10.1.0",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"prettier": "3.5.1",
"rollup": "4.59.0",
"rollup-plugin-version-injector": "^1.3.3"
},
"scripts": {
"prettier-check": "prettier . --check",
"prettier-fix": "prettier . --write",
"eslint": "eslint .",
"test": "ava --verbose",
"build-prod": "rollup -c rollup.config.js",
"build-dev": "DEV=1 rollup -c rollup.config.js",
"build-dev-watch": "DEV=1 rollup --watch -c rollup.config.js"
},
"prettier": {
"singleQuote": true
},
"ava": {
"concurrency": 1,
"verbose": true,
"serial": true,
"files": [
"test/*.js"
],
"sources": [
"src/**/*"
]
},
"dependencies": {
"uri-js": "^4.4.1"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
}
}