-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 997 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 997 Bytes
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
{
"name": "wiki-plugin-search",
"version": "0.3.0",
"description": "Federated Wiki - Search Plugin",
"keywords": [
"search",
"wiki",
"federated wiki",
"plugin"
],
"author": {
"name": "Ward Cunningham",
"email": "ward@c2.com",
"url": "http://ward.fed.wiki.org"
},
"contributors": [],
"scripts": {
"prettier:format": "prettier --write './**/*.js'",
"prettier:check": "prettier --check ./**/*.js",
"test": "node --test",
"update-authors": "node scripts/update-authors.cjs"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"expect.js": "*",
"globals": "^16.5.0",
"grunt-git-authors": "^3.2.0",
"prettier": "^3.7.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fedwiki/wiki-plugin-search.git"
},
"bugs": {
"url": "https://github.com/fedwiki/wiki-plugin-search/issues"
},
"type": "module",
"engines": {
"node": ">=0.20"
}
}