forked from farahat80/react-open-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "react-open-weather",
"version": "0.8.0",
"description": "React Weather component",
"main": "dist/react-open-weather.js",
"module": "dist/react-open-weather.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"test": "mocha test/*.spec.js --recursive",
"tdd": "npm test -- --watch",
"lint": "./node_modules/.bin/eslint ./src/js ;exit 0"
},
"peerDependencies": {
"dayjs": "^1.11.3",
"react": "^17",
"react-dom": "^17",
"weathericons": "^2.1.0"
},
"devDependencies": {
"@types/react-dom": "^16.9.8",
"sass": "^1.53.0",
"typescript": "^4.0.3",
"vite": "^3.0.2",
"weathericons": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/farahat80/react-open-weather.git"
},
"bugs": {
"url": "https://github.com/farahat80/react-open-weather/issues"
},
"keywords": [
"react",
"component",
"es2015",
"sass",
"es6",
"openweathermap"
],
"author": "Ahmed Farahat <[email protected]>",
"license": "MIT"
}