forked from stefanwalther/docker-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "docker-test",
"version": "0.4.0",
"description": "Sample docker image to test various scenarios with Docker.",
"keywords": [
"docker",
"hello-world",
"node.js"
],
"homepage": "https://github.com/stefanwalther/docker-test#readme",
"bugs": {
"url": "https://github.com/stefanwalther/docker-test/issues"
},
"license": "MIT",
"author": "Stefan Walther <swr.nixda@gmail.com> (http://qliksite.io)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stefanwalther/docker-test.git"
},
"scripts": {
"precommit": "npm run lint",
"d-build": "docker build -t stefanwalther/docker-test .",
"d-run": "docker run -it stefanwalther/docker-test",
"dc-up:dev": "docker-compose --f=./docker-compose.dev.yml up",
"dc-up:logging": "docker-compose --f=./docker-compose.logging.yml up",
"dc-up:loggingb": "docker-compose --f=./docker-compose.logging.yml up --build",
"dc-up:devb": "docker-compose --f=./docker-compose.dev.yml up --build",
"dc-down:logging": "docker-compose --f=./docker-compose.logging.yml down",
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"docs-if-necessary": "./scripts/docs-if-necessary.sh",
"lint": "npm run lint:src && npm run lint:test",
"lint:fix": "npm run lint:src:fix && npm run lint:test:fix",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"lint:test": "eslint test",
"lint:test:fix": "eslint test --fix",
"prepush": "npm run docs-if-necessary",
"start": "node ./src/index.js",
"start:watch": "(npm list nodemon -g || npm install nodemon -g) && nodemon ./src/index.js",
"test": "npm run test:integration",
"test:integration": "mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js' --timeout 6000"
},
"dependencies": {
"express": "^4.15.3",
"glob": "^7.1.2",
"node-schedule": "^1.2.5",
"read-pkg-up": "^4.0.0",
"winster": "^0.2.6",
"winston-logstash": "^0.4.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.7.1",
"eslint-config-space-single": "0.2.0",
"http-status-codes": "1.3.2",
"husky": "3.0.4",
"mocha": "3.5.3",
"supertest": "3.0.0"
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": []
},
"winster": {
"configFile": "./src/config/winster-config.js"
}
}