forked from pokeclicker/pokeclicker-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.23 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
{
"name": "pokeclicker-wiki",
"description": "A static wiki for the idle clicker game PokéClicker. This is currently a proof of concept. It has access to the PokéClicker code, and can use that to auto generate pages.",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node start.js",
"build": "browserify scripts/main.js -o bundle.js",
"watch": "watchify scripts/main.js -o bundle.js",
"update": "git submodule update --init && git submodule update --remote && node update.js && npm run build",
"test": "eslint ./scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pokeclicker/pokeclicker-wiki.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pokeclicker/pokeclicker-wiki/issues"
},
"homepage": "https://github.com/pokeclicker/pokeclicker-wiki#readme",
"dependencies": {
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^3.0.0",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-multimd-table": "^4.2.0",
"markdown-it-regexp": "^0.4.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"five-server": "^0.1.8",
"glob": "^8.0.3",
"watchify": "^4.0.0"
}
}