-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
{
"name": "async-task",
"version": "0.4.1",
"description": "Run a AsyncTask using a web worker or child_process.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo '--- RUNNING BROWSER TESTS----: \n' && ./node_modules/.bin/karma start karma.conf.js --single-run true",
"test-node": "node_modules/.bin/mocha --compilers js:babel-register test/specs/AsyncTask.js",
"testwatch": "./node_modules/.bin/karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gorillatron/async-task.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorillatron/async-task/issues"
},
"homepage": "https://github.com/gorillatron/async-task",
"dependencies": {
"background-worker": "^0.1.2",
"bluebird": "^2.3.11",
"uuid": "^2.0.1"
},
"devDependencies": {
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2016": "^6.0.11",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"del": "^1.1.0",
"detect-node": "^2.0.3",
"expect.js": "^0.3.1",
"flow-bin": "^0.23.1",
"gulp": "^3.8.10",
"gulp-browserify": "^0.5.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.5.3",
"karma": "^0.12.37",
"karma-atom-reporter": "0.0.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^1.0.0",
"karma-chrome-launcher": "^0.1.5",
"karma-expect": "^1.1.0",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.9",
"karma-phantomjs-launcher": "^0.1.4",
"karma-source-map-support": "^1.1.0",
"mocha": "^2.0.1",
"vinyl": "^1.1.1"
}
}