-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 2.03 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
{
"name": "spawn-server-webpack-plugin",
"description": "Webpack plugin for automatically starting a node server from memory after building.",
"version": "6.2.3",
"author": "Dylan Piercey <pierceydylan@gmail.com>",
"bugs": "https://github.com/DylanPiercey/spawn-server-webpack-plugin/issues",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/node-fetch": "^2.5.7",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"codecov": "^3.7.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"memfs": "^3.2.0",
"node-fetch": "^2.6.1",
"p-event": "^4.2.0",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1"
},
"files": [
"dist"
],
"homepage": "https://github.com/DylanPiercey/spawn-server-webpack-plugin",
"keywords": [
"webpack",
"spawn-server-webpack-plugin",
"server"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "DylanPiercey/spawn-server-webpack-plugin"
},
"scripts": {
"build": "tsc -b tsconfig.dist.json && cp ./src/worker.js ./dist/worker.js",
"ci:report": "cat coverage/lcov.info | codecov",
"ci:test": "jest --ci --coverage",
"format": "prettier \"**/*.{json,md,js,ts}\" --write",
"lint": "tsc --noEmit && eslint -f codeframe --fix './src/**/*.ts'",
"prepublishOnly": "npm run build",
"release": "standard-version && git push --follow-tags origin master && npm publish",
"test": "jest --watch",
"test:inspect": "node --inspect=0.0.0.0 $(which jest) --watch --runInBand --testTimeout 99999999"
},
"types": "dist/index.d.ts",
"dependencies": {
"exit-hook": "^2.2.0",
"tslib": "^2.0.1"
}
}