-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "wiki-plugin-markdown",
"version": "0.5.0-rc.1",
"description": "Federated Wiki - Markdown Plugin",
"keywords": [
"markdown",
"wiki",
"federated wiki",
"plugin"
],
"author": {
"name": "Ward Cunningham",
"email": "ward@c2.com",
"url": "http://ward.fed.wiki.org"
},
"contributors": [
"Ward Cunningham <ward@c2.com>",
"Paul Rodwell <paul.rodwell@btinternet.com>",
"Santiago Ferreira <san650@gmail.com>",
"Eric Dobbs <eric@dobbse.net>"
],
"scripts": {
"clean": "rm client/markdown.js client/markdown.js.map",
"build": "npm run clean; node --no-warnings scripts/build-client.js",
"test": "mocha",
"update-authors": "node scripts/update-authors.cjs"
},
"devDependencies": {
"esbuild": "^0.25.0",
"expect.js": "^0.3.1",
"grunt-git-authors": "^3.2.0",
"isomorphic-dompurify": "^2.16.0",
"marked": "^15.0.6",
"mocha": "^11.1.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fedwiki/wiki-plugin-markdown.git"
},
"bugs": {
"url": "https://github.com/fedwiki/wiki-plugin-markdown/issues"
},
"type": "module",
"engines": {
"node": ">=0.10"
}
}