-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "weatherman",
"displayName": "WeatherMan",
"description": "Provides intelligent weather forecast",
"version": "1.0.3",
"author": {
"name": "Kiran Kilingar Nadumane"
},
"repository": {
"type": "git",
"url": "https://github.com/kirankn8/weatherman.git"
},
"publisher": "Ekadyu",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Other"
],
"icon": "dist/weatherman.png",
"activationEvents": [
"onStartupFinished",
"onCommand:weatherman.forecast"
],
"main": "dist/extension.js",
"contributes": {
"commands": [
{
"command": "weatherman.forecast",
"title": "WeatherMan"
}
],
"keybindings": [
{
"command": "weatherman.forecast",
"key": "ctrl+w"
}
]
},
"scripts": {
"start": "npm run build && npm run serve",
"serve": "cross-env NODE_ENV=development webpack serve --mode=development",
"build": "rimraf dist && cross-env NODE_ENV=development webpack --config webpack.config.js --mode=development && copyfiles -f resources/weatherman.png dist",
"watch": "webpack --watch --mode=development",
"lint": "eslint .",
"pretest": "npm run lint",
"preinstall": "npx npm-force-resolutions",
"prod": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.js --mode=production && copyfiles -f resources/weatherman.png dist",
"test": "node ./test/runTest.js",
"package": "npm run prod && vsce package --yarn",
"publish": "vsce publish --yarn"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.58.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"csp-html-webpack-plugin": "^5.1.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^5.2.6",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.27.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.7",
"html-webpack-plugin": "^5.3.2",
"inject-body-webpack-plugin": "^1.3.0",
"mini-css-extract-plugin": "^2.1.0",
"mocha": "^8.4.0",
"prettier": "2.3.2",
"resource-hints-webpack-plugin": "0.0.2",
"rimraf": "^3.0.2",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.4",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"animate.css": "^4.1.1",
"axios": "^0.21.1",
"backoff-rxjs": "^6.5.7",
"dotenv": "^10.0.0",
"eslint-plugin-react": "^7.24.0",
"npm-force-resolutions": "0.0.10",
"prop-types": "^15.7.2",
"public-ip": "^4.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.2.0",
"vsce": "^1.96.0"
},
"resolutions": {
"glob-parent": "^5.1.2"
}
}