-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "wiki-plugin-mech",
"type": "module",
"version": "0.1.42-0",
"description": "Federated Wiki - Mechanism Scripting Plugin",
"keywords": [
"mech",
"mechansim",
"scripting",
"wiki",
"federated wiki",
"plugin"
],
"scripts": {
"build": "npm run clean; npm run check; npm run test; node --no-warnings scripts/build-client.js",
"clean": "rm client/mech.js client/mech.js.map",
"format": "prettier --write './**/*.js'",
"check": "prettier --check ./**/*.js",
"prettier:format": "prettier --write './**/*.js'",
"prettier:check": "prettier --check ./**/*.js",
"test": "c8 -r 'lcov' node --test"
},
"author": {
"name": "Ward Cunningham",
"email": "ward@c2.com",
"url": "https://c2.com/ward"
},
"contributors": [],
"devDependencies": {
"@eslint/js": "^9.22.0",
"c8": "^10.1.3",
"esbuild": "^0.25.1",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"prettier": "^3.5.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wardcunningham/wiki-plugin-mech.git"
},
"bugs": {
"url": "https://github.com/wardcunningham/wiki-plugin-mech/issues"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"expect.js": "^0.3.1",
"universal-thing": "^1.0.0",
"universal-ticker": "^0.1.1"
}
}