-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "dynamic-importmap",
"version": "0.1.0",
"license": "MIT",
"author": "Mark Keller",
"homepage": "https://github.com/keller-mark/dynamic-importmap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/keller-mark/dynamic-importmap.git"
},
"description": "Dynamically rewrite bare module specifiers at runtime",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./debug": "./dist/index.debug.js",
"./wasm": "./dist/index.wasm.js"
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "rimraf ./dist/ && pnpm run build-lib",
"build-lib": "rollup --config rollup.config.js",
"start-html": "http-server --cors='*' --port 3004 ./",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"es-module-lexer": "1.2.1",
"esm": "^3.2.25",
"kleur": "^4.1.4",
"mime-types": "^2.1.33",
"mocha": "^9.1.1",
"npm-run-all": "^4.1.5",
"open": "^8.0.8",
"preact": "^10.5.14",
"pretty-ms": "^3.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"tachometer": "^0.5.10",
"terser": "^5.10.0",
"cypress": "^10.10.0",
"http-server": "^14.0.0",
"@rollup/plugin-terser": "^0.4.1"
}
}