-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.45 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
57
58
59
60
{
"name": "workerify",
"description": "Transform web workers into browserified inline Blobs with browserify.",
"version": "1.1.0",
"homepage": "https://github.com/shama/workerify",
"author": {
"name": "Kyle Robinson Young",
"email": "[email protected]",
"url": "http://dontkry.com"
},
"main": "index.js",
"keywords": [
"worker",
"browserify",
"transform"
],
"repository": {
"type": "git",
"url": "git://github.com/shama/workerify.git"
},
"bugs": {
"url": "https://github.com/shama/workerify/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "browserify test/test.js -t ./ -o test/out.js",
"start": "budo example/index.js -- -t ./"
},
"files": [
"LICENSE-MIT",
"index.js"
],
"dependencies": {
"browserify": "^14.5.0",
"falafel": "^2.1.0",
"jsesc": "^2.5.0",
"through": "^2.3.4"
},
"devDependencies": {
"budo": "^10.0.3",
"workerstream": "^1.2.1",
"tape": "^4.8.0"
},
"testling": {
"files": "test/out.js",
"browsers": [
"ielatest",
"chrome/latest",
"firefoxlatest",
"safari/latest",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
}
}