-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "@webpod/ps",
"version": "0.0.0-beta.12",
"description": "A process lookup utility",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "target/cjs/index.cjs",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
}
},
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:js": "node ./src/scripts/build.mjs",
"build:dts": "tsc --emitDeclarationOnly --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"build:stamp": "npx buildstamp",
"test": "concurrently 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:unit": "c8 -r lcov -r text -o target/coverage -x src/scripts -x src/test -x target node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test.mjs",
"test:legacy": "node ./node_modules/mocha/bin/mocha -t 0 -R spec src/test/legacy/test.cjs",
"publish:draft": "npm run build && npm publish --no-git-tag-version"
},
"files": [
"target/cjs",
"target/esm",
"target/dts"
],
"keywords": [
"ps",
"process",
"lookup",
"pid"
],
"dependencies": {
"@webpod/ingrid": "^0.0.0-beta.3",
"zurk": "^0.9.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"c8": "^10.1.3",
"concurrently": "^9.1.0",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"esbuild-plugin-entry-chunks": "^0.1.15",
"eslint": "^8.57.0",
"eslint-config-qiwi": "^2.1.3",
"fast-glob": "^3.3.2",
"minimist": "^1.2.8",
"mocha": "^10.8.2",
"sinon": "^18.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.5",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/webpod/ps.git"
},
"license": "MIT"
}