-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "bessersmith",
"version": "1.1.0",
"description": "Create MQTT GTFS Realtime trip updates from custom MQTT HSL MONO JSON messages",
"main": "index.js",
"repository": "https://github.com/hsldevcom/bessersmith",
"contributors": [
"Tuukka Hastrup <[email protected]>",
"haphut <[email protected]>"
],
"scripts": {
"eslint": "eslint index.js \"src\" \"test\"",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"prettier": "prettier --write index.js \"src/**/*.js\" \"test/**/*.js\"",
"start": "node index.js",
"test": "mocha"
},
"license": "AGPL-3.0",
"dependencies": {
"bunyan": "^1.8.12",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"memory-cache": "^0.2.0",
"moment": "^2.22.2",
"mqtt": "^2.18.8",
"neodoc": "^2.0.2",
"protobufjs": "^6.8.8"
},
"devDependencies": {
"chai": "^4.1.2",
"dev-null": "^0.1.1",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"lolex": "^2.7.5",
"mocha": "^5.2.0",
"prettier": "^1.14.3"
}
}