-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.93 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
61
{
"name": "super-workers",
"version": "1.0.2",
"description": "Distribute load on front-end via parallelism",
"main": "dist/super-workers.js",
"scripts": {
"build": "webpack --optimize-minimize --env.mode=build",
"build-dev": "webpack -- --env.mode=dev",
"build-test": "karma start --single-run --no-auto-watch karma.config.js",
"dev": "webpack --progress --colors --watch --env.mode=dev",
"test": "karma start karma.config.js",
"coverage": "node node_modules/.bin/istanbul cover karma start --single-run karma.config.js",
"coveralls": "cat ./coverage/report-lcov/lcov.info | node node_modules/.bin/coveralls",
"lint-fix": "eslint 'tests/**/*.spec.js' --fix --cache --config .eslintrc --ignore-path .eslintignore"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "6.3.13",
"coveralls": "^2.11.16",
"eslint": "^4.7.2",
"eslint-loader": "^1.9.0",
"isparta-loader": "^2.0.0",
"istanbul": "^1.0.0-alpha.2",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma": "^1.4.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.2",
"parallel-webpack": "^1.6.1",
"webpack": "^3.6.0",
"yargs": "^8.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/softvar/super-workers.git"
},
"keywords": [
"super-workers",
"web worker",
"worker postmessage",
"distrubte tasks",
"load balancing",
"es6",
"commonjs",
"webpack"
],
"author": "Varun Malhotra",
"license": "MIT",
"bugs": {
"url": "https://github.com/softvar/super-workers/issues"
},
"homepage": "https://github.com/softvar/super-workers",
"dependencies": {}
}