forked from JulianNorton/weather-10kb-wxkb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.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
{
"name": "weather-10kb",
"version": "0.2.6",
"description": "weather in 10kb",
"engines": {
"node": ">=8.6.0"
},
"main": "index.js",
"scripts": {
"test": "mocha test/unit/",
"test:watch": "npm test -- -w",
"test:all": "nyc -r html --report-dir reports/coverage/html mocha",
"test:coverage": "nyc report",
"start": "node index.js",
"build-css": "node-sass --include-path scss public/style/styles-compiler.scss public/style/main.css --output-style compressed",
"watch-css": "nodemon -e scss -x \"npm run build-css\""
},
"dependencies": {
"compression": "1.7.1",
"cookie-parser": "1.4.3",
"dark-sky": "1.0.10",
"dateformat": "1.0.12",
"ejs": "2.5.5",
"express": "4.16.0",
"express-minify-html": "0.6.0",
"geoip-lite": "1.1.8",
"google-timezone-api": "1.0.1",
"helmet": "^3.8.2",
"moment-timezone": "0.5.5",
"node-freegeoip": "0.0.1",
"node-geocoder": "3.14.0",
"object-merge": "2.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/JulianNorton/weather-10kb"
},
"keywords": [
"weather",
"hourly",
"10kb"
],
"license": "GPL-2.0",
"devDependencies": {
"babel-eslint": "7.0.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-http": "3.0.0",
"eslint": "3.8.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"gulp": "3.9.1",
"istanbul": "0.4.5",
"mocha": "3.4.2",
"node-sass": "3.9.0",
"nodemon": "1.10.2",
"nyc": "^11.0.2"
}
}