-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.16 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
{
"name": "dev-server-ports",
"description": "Gracefully pick a port number for the dev server",
"version": "2.0.0",
"license": "MIT",
"author": "Brion Mario",
"keywords": [
"dev-server-ports",
"dynamic-port",
"webpack-dynamic-port",
"port-finder"
],
"homepage": "https://github.com/brionmario/dev-server-ports#readme",
"repository": {
"type": "git",
"url": "https://github.com/brionmario/dev-server-ports"
},
"bugs": {
"url": "https://github.com/brionmario/dev-server-ports/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsdx build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"cm": "cz",
"lint": "eslint --ext .js,.ts .",
"prepare": "tsdx build",
"semantic-release": "semantic-release",
"start": "tsdx watch",
"test": "tsdx test",
"typecheck": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"module": "dist/dev-server-ports.esm.js",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/detect-port": "^1.3.2",
"@types/inquirer": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"all-contributors-cli": "^6.20.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.4",
"semantic-release": "^19.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"dependencies": {
"chalk": "^4.1.2",
"detect-port": "^1.3.0",
"inquirer": "^8.2.2",
"is-root": "^2.1.0"
}
}