-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.56 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
62
{
"name": "property-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serverLinux": "export DEBUG=*,-nodemon* && nodemon web/server.js --verbose",
"crawlerTaskLinux": "export DEBUG=*,-nodemon* && nodemon crawler/task/index.js --verbose",
"prdlinux": "concurrently --kill-others \"npm run crawlerTaskLinux\" \"npm run serverLinux\"",
"debug": "SET DEBUG=* && node crawler/app.js --verbose",
"task": "SET DEBUG=*,-nodemon* && SET NODE_ENV=development&& nodemon crawler/task/index.js --verbose",
"test": "mocha test -R spec",
"api": "SET DEBUG=*,-nodemon* && SET NODE_ENV=development&& nodemon api/index.js --verbose",
"orc": "SET DEBUG=*,-nodemon* && SET NODE_ENV=orc&& nodemon crawler/task/index.js --verbose",
"data": "node crawler/db/crawler.js --verbose && node crawler/db/transform.js --verbose",
"verify": "SET DEBUG=*,-nodemon* && nodemon crawler/verify/index.js --verbose",
"transform": "SET DEBUG=*,-nodemon* && nodemon crawler/db/transform.js --verbose",
"crawler": "SET DEBUG=*,-nodemon* && SET NODE_ENV=development&& nodemon crawler/app/crawler.js --verbose",
"crawlerlinux": "export DEBUG=crawler && nodemon crawler/app.js --verbose",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"coverage-watch": "browser-sync start --server 'coverage/lcov-report/' --files 'coverage/lcov-report/'",
"coverages": "istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls",
"watch": "onchange 'test/*.js' -- istanbul cover node_modules/mocha/bin/_mocha",
"devtest":"concurrently --kill-others \"npm run watch\" \"npm run coverage-watch\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivernaloo/property-dashboard.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivernaloo/property-dashboard/issues"
},
"homepage": "https://github.com/ivernaloo/property-dashboard#readme",
"dependencies": {
"async": "^2.0.1",
"cheerio": "^0.22.0",
"config": "^1.25.1",
"debug": "^2.2.0",
"iconv-lite": "^0.4.16",
"ml-savitzky-golay": "^2.0.4",
"mongodb": "^2.2.25",
"node-cron": "^1.1.3",
"request": "^2.74.0"
},
"devDependencies": {
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"concurrently": "^3.4.0",
"cover": "^0.2.9",
"gulp-shell": "^0.6.3",
"istanbul": "^0.4.5",
"karma-chrome-launcher": "^2.0.0",
"mocha": "^3.3.0",
"npm-watch": "^0.1.8",
"onchange": "^3.2.1"
},
"watch": {
"coverage": "test/**/*.js"
}
}