-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "import-from-worker",
"version": "1.0.1",
"description": "",
"author": "Surma <surma@surma.dev>",
"license": "Apache-2.0",
"module": "dist/import-from-worker.js",
"scripts": {
"build": "rollup -c",
"serve": "http-server -c0 .",
"test": "karma start"
},
"devDependencies": {
"comlink": "^4.2.0",
"rollup": "^2.0.6",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"chai": "^4.2.0",
"http-server": "^0.12.1",
"husky": "^4.2.3",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "^2.0.2",
"lint-staged": "^10.0.8",
"mocha": "^7.1.0",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/import-from-worker.git"
}
}