-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "ambient2pwsweather",
"version": "1.0.0",
"description": "Pull weather data from AmbientWeather.net and push to PWSWeather",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"service": "sudo node service.js",
"start dev": "nodemon index.js",
"build": "mkdir -p build && zip -x 'node_modules/*' -x 'build/*' -x '.git/*' -x '.idea/*' -x 'config/development.json' -r build/ambient2pwsweather-$(npm run version --silent).zip *",
"version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/killroyboy/ambient2pwsweather.git"
},
"keywords": [
"ambient",
"weather",
"pwsweather"
],
"author": "Dan Wilson [[email protected]]",
"license": "MIT",
"bugs": {
"url": "https://github.com/killroyboy/ambient2pwsweather/issues"
},
"homepage": "https://github.com/killroyboy/ambient2pwsweather#readme",
"dependencies": {
"ambient-weather-api": "0.0.6",
"config": "^1.30.0",
"eazy-logger": "^3.0.2",
"got": "^8.3.1",
"is-elevated": "^2.0.1",
"lodash": "^4.17.10",
"moment": "^2.22.1"
},
"jshintConfig": {
"globals": {
"require": true
}
},
"devDependencies": {
"nodemon": "^1.17.4"
}
}