-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "wiki-plugin-image",
"version": "0.6.0-rc.1",
"description": "Federated Wiki - Image Plug-in",
"keywords": [
"wiki",
"federated wiki",
"plugin"
],
"author": {
"name": "Ward Cunningham",
"email": "ward@c2.com",
"url": "http://ward.fed.wiki.org"
},
"contributors": [
{
"name": "Nick Niemeir",
"email": "nick.niemeir@gmail.com",
"url": "http://nrn.io"
},
{
"name": "Paul Rodwell",
"email": "paul.rodwell@btinternet.com",
"url": "http://wiki-paul90.rhcloud.com"
}
],
"scripts": {
"build": "npm run clean; node --no-warnings scripts/build-client.js",
"clean": "rm client/image.js client/image.js.map",
"prettier:format": "prettier --write './**/*.js'",
"prettier:check": "prettier --check ./**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"esbuild": "^0.25.0",
"eslint": "^9.16.0",
"exifr": "^7.1.3",
"expect.js": "^0.3.1",
"globals": "^15.12.0",
"grunt-git-authors": "~3",
"prettier": "^3.4.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fedwiki/wiki-plugin-image.git"
},
"bugs": {
"url": "https://github.com/fedwiki/wiki-plugin-image/issues"
},
"engines": {
"node": ">=0.20"
},
"type": "module",
"dependencies": {
"multer": "^1.4.5-lts.1"
}
}