-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 936 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 936 Bytes
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
{
"name": "requirejs-worker",
"version": "0.1.0",
"description": "Require.JS Web Worker plugin",
"author": "Touchify (dev@touchify.co)",
"license": "MIT",
"main": "worker.js",
"homepage": "https://github.com/spatools/requirejs-worker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/spatools/requirejs-worker.git"
},
"bugs": {
"url": "https://github.com/spatools/requirejs-worker/issues"
},
"directories": {
"test": "tests"
},
"files": [
"worker.js",
"worker"
],
"scripts": {
"test": "node node_modules/requirejs/bin/r.js -o build.js",
"test-almond": "node node_modules/requirejs/bin/r.js -o build.almond.js",
"start": "http-server ./"
},
"keywords": [
"requirejs",
"require",
"plugin",
"worker",
"webworker"
],
"devDependencies": {
"almond": "^0.3.3",
"http-server": "^0.9.0",
"requirejs": "^2.3.2"
}
}