-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "migrants-scraper",
"version": "0.0.1",
"private": "true",
"scripts": {
"start": "babel-node index.js",
"watch": "webpack --progress --colors --watch -d",
"build": "webpack --progress --colors -p",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --recursive --check-leaks --reporter spec --bail --compilers js:babel/register ./test",
"test-unit": "./node_modules/.bin/mocha --recursive --check-leaks --reporter spec --bail --compilers js:babel/register ./test/unit",
"test-spec": "./node_modules/.bin/mocha --recursive --check-leaks --reporter spec --bail --compilers js:babel/register ./test/specs",
"lint": "gulp lint",
"pretest": "npm run lint"
},
"dependencies": {
"async": "^1.5.2",
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"pg": "^4.4.1",
"uuid": "^2.0.1"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-eslint": "^4.1.1",
"chai": "^3.2.0",
"eslint": "^1.3.1",
"eslint-loader": "^1.0.0",
"gulp": "^3.9.0",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "^1.11.2",
"gulp-notify": "^2.2.0",
"gulp-notify-growl": "^1.0.2",
"gulp-require": "^0.1.4",
"jscs": "^2.1.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.2.5",
"node-fetch": "^1.3.2",
"nodemon": "^1.4.0",
"notify-send": "^0.1.2",
"sinon": "^1.15.4",
"supertest": "^1.1.0"
}
}