-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "scheduler-service",
"version": "0.3.2",
"description": "Scheduler for sammler.",
"keywords": [
"sammler"
],
"homepage": "https://github.com/sammler/scheduler-service",
"bugs": {
"url": "https://github.com/sammler/scheduler-service/issues"
},
"license": "MIT",
"author": {
"name": "Stefan Walther",
"url": "https://github.com/stefanwalther",
"twitter": "waltherstefan"
},
"repository": "sammler/scheduler-service",
"scripts": {
"coverage": "babel-node ./node_modules/.bin/isparta cover _mocha",
"d-build": "docker build -t sammlerio/scheduler-service .",
"d-run": "docker run -it sammlerio/scheduler-service",
"dc-up:dev": "docker-compose --f=./docker-compose.dev.yml up",
"dc-up:devb": "docker-compose --f=./docker-compose.dev.yml up --build",
"dc-up:down": "docker-compose --f=./docker-compose.dev.yml down",
"dc-down:dev": "docker-compose --f=./docker-compose.dev.yml down",
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"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",
"start": "node ./src/index.js",
"start:watch": "npm install nodemon -g && nodemon -L --watch ./src --config ./src/nodemon.json --exec npm run start",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "npm run lint:test && mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js' --reporter 'mocha-junit-reporter'",
"test-coverage": "istanbul cover node_modules/.bin/_mocha --require ./test/mocha.conf.js -- -- -u exports -R spec test/**/* && codecov",
"test:unit": "npm run lint:test && mocha './test/unit/**/*.spec.js' --require './test/mocha.conf.js' --reporter 'mocha-junit-reporter'"
},
"dependencies": {
"agenda": "2.1.0",
"amqp-winston": "1.0.7",
"amqplib": "0.5.5",
"amqplib-sugar": "0.4.2",
"js-yaml": "3.13.1",
"json-templater": "1.2.0",
"lodash": "4.17.15",
"mocha-junit-reporter": "1.23.1",
"node-schedule": "1.3.2",
"sammler-nodelib-logger": "0.2.4",
"superagent": "5.1.0",
"superagent-promise": "1.1.0",
"uuid": "3.3.3",
"winster": "0.2.14"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.5.0",
"eslint": "5.16.0",
"eslint-config-space-single": "0.3.11",
"eslint-plugin-mocha": "5.3.0",
"istanbul": "0.4.5",
"jobs-service": "github:sammler/jobs-service",
"mocha": "*",
"nyc": "14.1.1",
"sammler-base": "sammler/sammler-base"
},
"engines": {
"node": ">=8.4.0"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"verb": {
"run": true,
"toc": false,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": [
"verb",
"verb-readme-generator"
]
},
"winster": {
"configFile": "./app/config/winster-configuration.js"
}
}