-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "humansurvival",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"render-table": "npx live-server ./build/ & npx nodemon --ext js,css,md --watch . render-table.js",
"render-timeline": "npx live-server ./build/ --open=timeline.html & npx nodemon --ext js,css,md --watch . render-timeline.js",
"publish": "npx gh-pages -d build",
"build": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"capture-website": "^3.2.0",
"clean-html": "^2.0.1",
"csv-parse": "^5.3.0",
"es-main": "^1.2.0",
"jsdom": "^20.0.0",
"lodash": "^4.17.21",
"marked": "^9.1.2",
"nodemon": "^3.0.1",
"unzipper": "^0.10.11",
"yaml": "^2.1.1"
},
"type": "module",
"devDependencies": {
"@compodoc/live-server": "^1.2.3",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"gh-pages": "^6.0.0",
"simple-git-hooks": "^2.9.0",
"standard": "^17.1.0"
},
"simple-git-hooks": {
"pre-commit": "npx standard"
}
}