-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "@statewalker/webrun-http-browser",
"version": "0.3.3",
"description": "Service-worker-based HTTP server simulation for browsers",
"keywords": [],
"homepage": "https://github.com/statewalker/statewalker-webrun-http-browser",
"author": {
"name": "Mikhail Kotelnikov",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"files": [
"dist/**/package.json",
"dist/**/*.js",
"public",
"public-relay",
"src/**/*.js",
"demo",
"index.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/index.js",
"unpkg": "dist/index.js",
"exports": {
"umd": "./dist/index-umd.min.js",
"default": "./src/index.js"
},
"dependencies": {
"@statewalker/utils": "^0.4.2",
"idb-keyval": "^6.2.0"
},
"devDependencies": {
"@statewalker/rollup": "^0.1.6",
"eslint": "^8",
"expect.js": "^0.3",
"mocha": "^10",
"rollup": "^3"
},
"repository": {
"type": "git",
"url": "[email protected]:statewalker/statewalker-webrun-http-browser.git"
},
"scripts": {
"eslint": "eslint src",
"rollup": "rollup -c",
"watch": "rollup -c --watch",
"test": "mocha -R spec ./test/index.js",
"prepublishOnly": "rm -rf dist && yarn test && yarn rollup"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}