-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
52
53
54
55
56
57
{
"name": "mini-owm",
"version": "1.3.6",
"description": "Mini ES wrapper for OpenWeatherMap api",
"author": "Dean Verleger",
"license": "ISC",
"homepage": "https://github.com/deanbot/mini-owm#readme",
"bugs": {
"url": "https://github.com/deanbot/mini-owm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deanbot/mini-owm.git"
},
"keywords": [
"Open Weather Map",
"OpenWeather",
"OpenWeatherMap",
"API",
"ES"
],
"main": "lib/index.js",
"module": "libm/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "shx rm -rf lib libm",
"prepare": "npm run clean",
"prepublishOnly": "npm run build",
"build": "npm run build:umd && npm run build:esnext && npm run build:ts-defs",
"build:umd": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"build:esnext": "tsc -p tsconfig.esnext.json",
"build:ts-defs": "tsc --declaration --emitDeclarationOnly",
"build:dev": "webpack --config ./webpack.config.js",
"build:dev-watch": "webpack --config ./webpack.config.js --progress --colors --watch",
"serve": "http-server ./lib -o",
"start": "npm run clean && npm run build:dev && npm-run-all --parallel build:dev-watch serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"fs-extra": "^7.0.1",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}