-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 932 Bytes
/
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
{
"name": "magic-portal",
"version": "1.0.0",
"description": "Pass objects with async methods between WebWorkers and the main thread easily",
"source": "index.js",
"files": [
"dist"
],
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.es6.js",
"scripts": {
"build": "microbundle --name MagicPortal",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmhilton/magic-portal.git"
},
"keywords": [],
"author": "William Hilton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmhilton/magic-portal/issues"
},
"homepage": "https://github.com/wmhilton/magic-portal#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"jest": "^23.6.0",
"microbundle": "^0.7.0"
}
}