forked from flozz/threadify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 752 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 752 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
{
"name": "threadify",
"version": "0.1.0",
"description": "Simply transforms a javascript function into a web worker",
"main": "src/threadify.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/flozz/threadify"
},
"keywords": [
"webworker",
"worker",
"thread",
"parallele"
],
"author": "Fabien LOISON <http://www.flozz.fr/>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/flozz/threadify/issues"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^3.8.0",
"grunt-contrib-jasmine": "^0.9.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-jscs": "^1.8.0"
}
}