-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "hs-weather-app",
"version": "1.0.0",
"description": "Hootsuite weather app",
"main": "index.js",
"scripts": {
"test": "nyc ./node_modules/.bin/mocha",
"start": "node index.js",
"lint": "eslint src/js/*.js",
"build": "cd src/js && browserify index.js --s weatherBundle -p esmify > bundle.js"
},
"repository": {
"type": "git",
"url": "git@github.com:kx-chen/hs-weather-app.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"browserify": "^16.3.0",
"ejs": "^2.6.2",
"express": "^4.15.3",
"js-sha512": "^0.4.0",
"mustache": "^3.0.1",
"node-fetch": "^2.6.0",
"node-fetch-polyfill": "^2.0.6",
"requirejs": "^2.3.6",
"twit": "^2.2.9"
},
"engines": {
"node": "8.2.1"
},
"devDependencies": {
"canvas": "^2.5.0",
"eslint": "^6.0.1",
"esmify": "^2.1.1",
"fetch-mock": "^7.3.9",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
}
}