forked from GoogleChromeLabs/comlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "comlinkjs",
"version": "3.0.2",
"description": "",
"main": "comlink.js",
"module": "comlink.js",
"types": "comlink.d.ts",
"scripts": {
"test": "npm run linter && npm run unittest && npm run build",
"unittest": "karma start",
"linter": "prettier --write ./*.js ./docs/**/*.js ./tests/**/*.js ./**/*.ts ./**/*.md ./**/*.json",
"watchtest": "karma start --no-single-run --browsers ChromeHeadless",
"watchtestharmony": "karma start --no-single-run --browsers ChromeCanaryHeadlessHarmony",
"version": "sed -i.bak -e 's!comlinkjs@[0-9.]*!comlinkjs@'${npm_package_version}'!' README.md && git add README.md",
"mypublish": "npm run build && npm run test && cp README.md package.json dist && npm publish dist",
"build": "rm -rf dist && mkdir dist && npm run compile",
"compile": "tsc --outDir dist && tsc -m umd --outDir dist/umd && node ./mangle_umd.js"
},
"keywords": [],
"author": {
"name": "Surma",
"email": "[email protected]"
},
"contributors": [
{
"name": "Surma",
"email": "[email protected]"
},
{
"name": "Ian Kilpatrick",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/comlink.git"
},
"license": "Apache-2.0",
"devDependencies": {
"chai": "4.1.2",
"karma": "2.0.4",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-safari-launcher": "1.0.0",
"karma-safaritechpreview-launcher": "0.0.6",
"mocha": "5.2.0",
"prettier": "1.13.7",
"typescript": "2.9.2"
},
"dependencies": {}
}