-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "wiki-plugin-assets",
"version": "0.7.4",
"description": "Federated Wiki - Assets Plugin",
"keywords": [
"assets",
"wiki",
"federated wiki",
"plugin"
],
"author": {
"name": "Ward Cunningham",
"email": "ward@c2.com",
"url": "http://ward.asia.wiki.org"
},
"contributors": [
"Ward Cunningham <ward@c2.com>",
"Nick Niemeir <nick.niemeir@gmail.com>",
"Marcin Cieslak <saper@saper.info>",
"Paul Rodwell <paul.rodwell@btinternet.com>"
],
"scripts": {
"build": "npm run test; npm run build:client; npm run build:server",
"build:client": "npm run clean:client; node --no-warnings scripts/build-client.js",
"build:server": "npm run clean:server; node --no-warnings scripts/build-server.js",
"clean": "npm run clean:client; npm run clean:server",
"clean:client": "rm client/assets.js client/assets.js.map",
"clean:server": "rm server/server.js server/server.js.map",
"test": "node --test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"expect.js": "^0.3.1",
"globals": "^17.4.0",
"grunt-git-authors": "^3.2.0",
"prettier": "^3.8.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fedwiki/wiki-plugin-assets.git"
},
"bugs": {
"url": "https://github.com/fedwiki/wiki-plugin-assets/issues"
},
"type": "module",
"engines": {
"node": ">=22"
},
"dependencies": {
"multer": "^2.1.1"
}
}