-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 KB
/
package.json
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
{
"name": "wiki-plugin-rollup",
"version": "0.4.0-rc.1",
"description": "Federated Wiki - Rollup Plug-in",
"keywords": [
"wiki",
"federated wiki",
"plugin"
],
"author": {
"name": "Ward Cunningham",
"email": "[email protected]",
"url": "http://ward.fed.wiki.org"
},
"contributors": [
"Ward Cunningham <[email protected]>",
"Nick Niemeir <[email protected]>",
"Paul Rodwell <[email protected]>"
],
"scripts": {
"build": "npm run clean; node --no-warnings scripts/build-client.js",
"clean": "rm client/rollup.js client/rollup.js.map",
"prettier:format": "prettier --write './**/*.js'",
"prettier:check": "prettier --check ./**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"update-authors": "node scripts/update-authors.cjs"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"esbuild": "^0.25.0",
"eslint": "^9.18.0",
"globals": "^16.0.0",
"grunt-git-authors": "^3.2.0",
"prettier": "^3.4.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fedwiki/wiki-plugin-rollup.git"
},
"bugs": {
"url": "https://github.com/fedwiki/wiki-plugin-rollup/issues"
},
"type": "module",
"engines": {
"node": ">=20"
}
}