-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "wiki-plugin-activity",
"version": "0.7.0-rc.3",
"description": "Federated Wiki - Activity Plug-in",
"keywords": [
"wiki",
"federated wiki",
"plugin"
],
"author": {
"name": "Ward Cunningham",
"email": "ward@c2.com",
"url": "http://ward.fed.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>",
"Robert Best <chessscholar@gmail.com>"
],
"scripts": {
"build": "npm run clean; mocha; node --no-warnings scripts/build-client.js",
"clean": "rm client/activity.js client/activity.js.map",
"prettier:format": "prettier --write './**/*.js'",
"prettier:check": "prettier --check ./**/*.js",
"test": "mocha",
"update-authors": "node scripts/update-authors.cjs"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"esbuild": "^0.25.0",
"eslint": "^9.14.0",
"expect.js": "*",
"globals": "^15.12.0",
"grunt-git-authors": "^3.2.0",
"mocha": "^11.1.0",
"prettier": "^3.5.0",
"virtual-dom": "~2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fedwiki/wiki-plugin-activity.git"
},
"bugs": {
"url": "https://github.com/fedwiki/wiki-plugin-activity/issues"
},
"type": "module",
"engines": {
"node": ">=18.x"
}
}