-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "@t0ri/openweathermap-essentials",
"version": "1.0.3",
"description": "",
"main": "umd/index.js",
"module": "esm/index.js",
"files": [
"esm/*",
"emd/*"
],
"types": "esm/index.d.ts",
"scripts": {
"prepare": "rollup --config",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t0ri/openweathermap-essentials.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/t0ri/openweathermap-essentials/issues"
},
"homepage": "https://github.com/t0ri/openweathermap-essentials#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"coveralls": "^3.0.9",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"rollup": "^1.27.5",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}