-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
49
50
51
52
{
"name": "mdn-local",
"version": "0.4.6",
"description": "create offline mozilla developer network documents",
"main": "index.js",
"engines": {
"node": ">=12.16.0"
},
"dependencies": {
"agentkeepalive": "^4.5.0",
"fast-glob": "^3.3.2",
"json5": "^2.2.3",
"mkdirp": "^3.0.1",
"tough-cookie": "^4.1.4",
"urijs": "^1.19.11",
"website-scrap-engine": "^0.7.2"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^22.9.4",
"@types/tough-cookie": "^4.0.5",
"@types/urijs": "^1.19.25",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^5.0.4"
},
"jest": {
"preset": "ts-jest"
},
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint --fix src test",
"clean": "rimraf lib/*",
"tsc": "tsc",
"build": "npm run lint && npm run tsc && npm run copy",
"copy": "node copy-src.js",
"prepack": "npm run clean && npm run build",
"postshrinkwrap": "node package-lock-resolved.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/website-local/mdn-local.git"
},
"keywords": [
"mdn"
],
"author": "myfreeer",
"license": "MPL-2.0"
}