forked from f24-it-services/gfs-weather-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.59 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
{
"name": "gfs-weather-server",
"version": "2.2.2",
"description": "Backend for downloading, storing and serving meteorological data.",
"keywords": [],
"homepage": "https://github.com/f24-it-services/gfs-weather-server#readme",
"bugs": {
"url": "https://github.com/f24-it-services/gfs-weather-server/issues"
},
"license": "MIT",
"author": "Johannes Klose <[email protected]>",
"main": "lib/index.js",
"bin": {
"gfs-weather-crond": "bin/gfs-weather-crond.js",
"gfs-weather-server": "bin/gfs-weather-server.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f24-it-services/gfs-weather-server.git"
},
"scripts": {
"all": "npm-run-all clean lint build test",
"build": "babel src -d lib",
"clean": "rimraf lib",
"crond": "node lib/crond.js",
"crond:dev": "NODE_ENV=development DEBUG=gfs* node -r babel-register src/crond.js",
"lint": "eslint '**/*.js'",
"prepublishOnly": "npm run all",
"start": "node lib/server.js",
"start:dev": "NODE_ENV=development DEBUG=gfs* nodemon --watch src -- -r 'babel-register' src/server.js",
"test": "DEBUG=gfs* mocha",
"test:script": "./scripts/crond-test.sh",
"watch": "npm run build -- --watch"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "standard",
"plugins": [
"standard"
]
},
"dependencies": {
"db-streamer": "^1.2.1",
"geobuf": "^3.0.1",
"gfs-downloader": "^1.1.0",
"gfs-weather-utils": "^1.1.0",
"glob": "^7.1.3",
"grib2json": "^1.0.2",
"lodash.pick": "^4.4.0",
"mongoose": "^5.5.4",
"node-cron": "^2.0.3",
"nodemon": "^1.18.11",
"pbf": "^3.2.0",
"pg": "^7.10.0",
"pg-copy-streams": "^2.2.0",
"pg-hstore": "^2.3.2",
"restify": "^8.3.1",
"sequelize": "^5.7.6",
"yargs": "^13.2.2"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"rimraf": "*",
"shelljs": "^0.8.3"
}
}