-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "meteostat",
"version": "2.0.0",
"description": "Meteostat is an open platform which provides free access to weather and climate data",
"main": "dist/index.js",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/meteostat/meteostat-js.git"
},
"keywords": [],
"author": "Rafael Franco <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meteostat/meteostat-js/issues"
},
"homepage": "https://github.com/meteostat/meteostat-js#readme",
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json",
"dev": "microbundle watch --tsconfig tsconfig.json",
"lint": "eslint ."
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/isomorphic-fetch": "0.0.35",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"microbundle": "^0.14.0",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"typescript": "^4.4.4"
},
"files": [
"dist"
]
}