UNPKG

1.8 kBJSONView Raw
1{
2 "name": "threads",
3 "version": "0.12.1",
4 "keywords": [
5 "threads",
6 "web worker",
7 "cluster",
8 "child_process",
9 "threadpool",
10 "spawn",
11 "fork",
12 "parallel"
13 ],
14 "description": "Easy to use, yet powerful multi-threading library for node.js and the browser!",
15 "author": "Andy Wermke <andy@dev.next-step-software.com>",
16 "license": "MIT",
17 "main": "lib/index.js",
18 "scripts": {
19 "build": "gulp dist",
20 "test": "gulp test",
21 "prepublishOnly": "gulp dist test"
22 },
23 "engines": {
24 "node": ">= 4.0"
25 },
26 "repository": "andywer/thread.js",
27 "bugs": {
28 "url": "https://github.com/andywer/thread.js/issues"
29 },
30 "babel": {
31 "presets": [
32 [
33 "es2015",
34 {
35 "loose": true
36 }
37 ]
38 ]
39 },
40 "devDependencies": {
41 "async": "^1.4.2",
42 "babel-preset-es2015": "^6.18.0",
43 "babel-preset-es2015-loose": "^8.0.0",
44 "browserify": "^13.1.1",
45 "codeclimate-test-reporter": "^0.4.0",
46 "coveralls": "^2.11.4",
47 "expect.js": "^0.3.1",
48 "gulp": "^3.9.1",
49 "gulp-babel": "^6.1.2",
50 "gulp-concat": "^2.5.2",
51 "gulp-eslint": "^3.0.1",
52 "gulp-mocha": "^3.0.1",
53 "gulp-rename": "^1.2.2",
54 "gulp-sourcemaps": "^1.5.2",
55 "gulp-uglify": "^2.0.0",
56 "istanbul": "^0.4.0",
57 "karma": "^1.3.0",
58 "karma-browserify": "^4.3.0",
59 "karma-chrome-launcher": "^2.0.0",
60 "karma-expect": "^1.1.0",
61 "karma-firefox-launcher": "^1.0.0",
62 "karma-mocha": "^1.3.0",
63 "mocha": "^3.1.2",
64 "natives": "^1.1.6",
65 "sinon": "^1.16.1",
66 "through2": "^2.0.0",
67 "vinyl-source-stream": "^1.1.0"
68 },
69 "dependencies": {
70 "eventemitter3": "^2.0.2",
71 "native-promise-only": "^0.8.1"
72 },
73 "browser": {
74 "child_process": false,
75 "os": false,
76 "path": false
77 }
78}