-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
63
64
65
66
67
68
69
{
"name": "application-name",
"version": "0.0.1",
"description": "Application description",
"main": "app.js",
"homepage": "",
"repository": {
"type": "git",
"url": "http//github.com/"
},
"keywords": [],
"scripts": {
"bootstrap": "yarn install --dev && npm run build && echo 'Bootstrap finished :D'",
"build": "npm test && npm run lint && ./node_modules/.bin/gulp",
"start": "./node_modules/.bin/gulp && node ./dist/app dev",
"test": "nyc ./node_modules/.bin/ava",
"lint": "./node_modules/.bin/standard ./src/**/*.js --verbose",
"docs": "./node_modules/.bin/esdoc -c esdoc.json"
},
"author": "Marvin Frachet",
"license": "MIT",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"bunyan": "^1.8.10",
"colors": "^1.1.2",
"js-yaml": "^3.8.3",
"nightmare": "^2.10.0",
"osmosis": "^1.1.4",
"pg": "^6.4.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.2.0",
"sequelize-connect": "^2.0.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"coveralls": "^2.13.0",
"del": "^2.2.2",
"esdoc": "^0.5.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^2.1.2",
"nyc": "^10.2.0",
"sinon": "^2.1.0",
"standard": "^10.0.1"
},
"ava": {
"files": [
"src/test/**/*.test.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"standard": {
"globals": [
"before",
"describe",
"beforeEach",
"afterEach",
"it",
"expect"
]
}
}