-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "weather-underground-by-zip",
"version": "1.6.6",
"description": "simple weather underground call using zipcode",
"main": "build/index.js",
"scripts": {
"test": "npm run babel && ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"babel": "mkdir -p build && babel index.js -o build/index.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"weather",
"zipcode",
"underground"
],
"author": "Barry",
"license": "MIT",
"dependencies": {
"superagent": "^5.2.2",
"core-js": "^3.6.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"chai": "*",
"coveralls": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"istanbul": "*",
"mocha": "*",
"nock": "^12.0.3",
"should": "*",
"should-http": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beasta/weather-underground-by-zip.git"
},
"bugs": {
"url": "https://github.com/Beasta/weather-underground-by-zip/issues"
},
"homepage": "https://github.com/Beasta/weather-underground-by-zip#readme"
}