This repository was archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 KB
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
{
"name": "html-source-map-rebase",
"version": "3.1.1",
"description": "Rebase your HTML assets based on a source map.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"prepack": "npm run clean && npm run build",
"prebuild": "npm run clean",
"test": "ts-node node_modules/tape/bin/tape test/**/*.test.ts | tap-spec",
"build": "tsc --project . --module commonjs --outDir dist --declaration true",
"build:doc": "typedoc src/index.ts --out docs --excludePrivate --excludeProtected --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NightlyCommit/html-source-map-rebase.git"
},
"author": "Eric MORAND",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NightlyCommit/html-source-map-rebase/issues"
},
"homepage": "https://github.com/NightlyCommit/html-source-map-rebase#readme",
"dependencies": {
"css-source-map-rebase": "^5.0.1",
"parse5-html-rewriting-stream": "^5.1.1",
"slash": "^3.0.0",
"source-map": "^0.6.1"
},
"devDependencies": {
"@types/node": "^16.18.58",
"@types/parse5": "^5.0.3",
"@types/parse5-html-rewriting-stream": "^5.1.2",
"@types/parse5-sax-parser": "^5.0.2",
"@types/tape": "^5.6.1",
"parse5-sax-parser": "^5.0.0",
"rimraf": "^2.6.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"twing": "^5.1.4",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
}
}