-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
74 lines (74 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "freeze-dry",
"description": "Snapshots a web page to get it as a static, self-contained HTML document.",
"version": "1.0.0",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/WebMemex/freeze-dry"
},
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"check-globals": "eslint --config .eslintrc-check-globals.json 'src/**/*.ts'",
"bundle": "vite build",
"prepare": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src -d lib --extensions '.js,.ts' --ignore '**/*.d.ts,**/*.test.js,**/*.test.ts'",
"watch": "babel src -d lib --extensions '.js,.ts' --ignore '**/*.d.ts,**/*.test.js,**/*.test.ts' -w",
"test": "npm run test:jest && npm run test:playwright",
"test:jest": "jest --verbose",
"test:playwright": "playwright test",
"test-server": "vite --port 3000 --strictPort",
"typecheck": "tsc --noEmit || true",
"docs": "rimraf _site && eleventy && typedoc"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@playwright/test": "^1.20.1",
"@types/jest": "^24.0.25",
"@types/node": "^13.11.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "^25.2.6",
"blob-util": "^2.0.0",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "^6.8.0",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"jest-fetch-mock": "=1.2.0",
"jsdom": "^15.1.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"typedoc": "^0.23.7",
"typescript": ">=4.5.0",
"vite": "^2.9.9"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"document-outerhtml": "^0.1.4",
"domnode-at-path": "^1.0.0",
"flat-options": "^0.1.3",
"memoize-one": "^5.1.1",
"memoize-weak": "^1.0.2",
"mutable-proxy": "^1.0.0",
"path-to-domnode": "^1.0.1",
"postcss": "^8.0.1",
"postcss-values-parser": "^1.5.0",
"relative-to-absolute-iri": "^1.0.5"
},
"jest": {
"testMatch": [
"**/*test.[tj]s"
],
"testURL": "https://example.com/test/page"
}
}