-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.28 KB
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
{
"name": "find-process",
"version": "2.1.1",
"description": "find process info by port/pid/name etc.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig.esm.json && node scripts/postbuild.js",
"dev": "tsc --watch",
"test": "npm run build && mocha -r ts-node/register test/*.test.ts && standard",
"lint": "standard --fix && npm-ensure -t deps",
"type-check": "tsc --noEmit",
"check-version": "node scripts/check-version.js",
"update-history": "node scripts/update-history.js",
"prepublishOnly": "npm run build && npm run check-version",
"prepare": "npm run build"
},
"bin": {
"find-process": "dist/cjs/bin/find-process.js"
},
"ensure": {
"deps": {
"checkDirs": [
"lib/*",
"bin/*",
"*.js"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yibn2008/find-process.git"
},
"keywords": [
"node",
"process",
"pid",
"port"
],
"standard": {
"globals": [
"describe",
"beforeEach",
"afterEach",
"it"
],
"ignore": [
"/node_modules",
"/doc",
"/example",
"/test",
"/dist",
"index.d.ts"
]
},
"author": "zoujie <yibn2008@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yibn2008/find-process/issues"
},
"homepage": "https://github.com/yibn2008/find-process#readme",
"dependencies": {
"chalk": "~4.1.2",
"commander": "^14.0.3",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"mocha": "^11.7.5",
"npm-ensure": "^1.3.0",
"rimraf": "^6.1.3",
"standard": "^17.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.3",
"diff": ">=8.0.3"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}