-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "swift-transform",
"version": "1.0.0",
"description": "Parallelized transform streams for everyone!",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000 --bail",
"test-cov": "istanbul cover --dir test/coverage _mocha -- --timeout 10000 --bail && echo open test/coverage/lcov-report/index.html",
"test-travis": "istanbul cover _mocha --report lcovonly -- --timeout 10000 --bail && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bugs": {
"url": "https://github.com/IndigoUnited/node-swift-transform/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/node-swift-transform.git"
},
"keywords": [
"transform",
"stream",
"parallel",
"parallelized",
"concurrent",
"async",
"queue"
],
"author": "IndigoUnited <[email protected]> (http://indigounited.com)",
"license": "MIT",
"dependencies": {
"async": "^2.0.0"
},
"devDependencies": {
"coveralls": "^2.11.6",
"expect.js": "^0.3.1",
"istanbul": "^0.4.1",
"mocha": "^3.0.1"
}
}