-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"author": {
"name": "Daniel López",
"email": "danypype@gmail.com"
},
"name": "tools",
"description": "Useful set of tools to use in application development",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "git://github.com/alltherooms/tools.git"
},
"main": "./tools",
"scripts": {
"test": "mocha $(find test -name '*spec.js')",
"test:httpdownloader": "mocha test/http-downloader.spec.js",
"test:ftpdownloader": "mocha test/ftp-downloader.spec.js",
"test:csvparser": "mocha test/csv-parser/csv-parser.spec.js",
"test:geo": "mocha test/geo.spec.js",
"test:throttler": "mocha test/throttler/throttler.spec.js",
"test:socketdataparser": "mocha test/socket-data-parser/socket-data-parser.spec.js",
"test:utils": "mocha test/utils.spec.js"
},
"dependencies": {
"ftp": "0.3.10",
"line-reader": "0.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-spies": "^0.7.1",
"ftp-test-server": "git+https://github.com/alexeld/ftp-test-server.git",
"heapdump": "^0.3.9",
"mocha": "^4.0.1",
"sinon": "^4.0.2"
}
}