-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "howlongtobeat",
"version": "1.8.0",
"main": "dist/main/howlongtobeat.js",
"author": "Christian Katzorke <[email protected]>",
"license": "WTFPL",
"scripts": {
"build": "tsc",
"pretest": "tsc --sourcemap",
"test": "nyc mocha dist/test/**/*.test.js",
"integrationtest": "nyc mocha dist/test/*.integration.test.js",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ckatzorke/howlongtobeat.git"
},
"bugs": {
"url": "https://github.com/ckatzorke/howlongtobeat/issues"
},
"homepage": "https://github.com/ckatzorke/howlongtobeat",
"dependencies": {
"axios": "^1.6",
"cheerio": "^1.0.0-rc.12",
"fast-levenshtein": "^2.0.6",
"user-agents": "^1.0.580"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/chai-as-promised": "^0.0.30",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.14",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codecov": "^3.7.1",
"hoek": "^5.0.4",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"typescript": "^2.9.2"
}
}