-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 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
{
"name": "run-script-webpack-plugin",
"version": "0.2.0",
"description": "Automatically run your script once Webpack's build completes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "tsc",
"lint": "eslint src",
"test": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atassis/run-script-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"typescript",
"server",
"start",
"watch",
"restart",
"express"
],
"author": "Taymuraz Kaytmazov <[email protected]> (https://github.com/atassis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atassis/run-script-webpack-plugin/issues"
},
"homepage": "https://github.com/atassis/run-script-webpack-plugin#readme",
"devDependencies": {
"@types/node": "^16.11.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4",
"webpack": "^5"
}
}