-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.8 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.8 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
{
"name": "linux-top-parser",
"version": "1.3.5",
"description": "parser for linux top command",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./streams": "./lib/streams/index.js"
},
"bin": {
"linux-top-parser": "./lib/bin.js"
},
"scripts": {
"start": "ts-node ./src/bin.ts",
"build": "tsc",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage --reporter verbose --reporter junit --outputFile=./coverage/test-results.xml",
"prepublishOnly": "npm run build",
"example:read-from-file": "ts-node ./example/read-from-file.ts",
"example:stream-from-top-command": "ts-node ./example/stream-from-top-command.ts"
},
"keywords": [
"top",
"linux",
"parser"
],
"author": {
"name": "tim",
"url": "https://timx.co/"
},
"license": "MIT",
"homepage": "https://github.com/sweetim/linux-top-parser",
"repository": {
"type": "git",
"url": "https://github.com/sweetim/linux-top-parser"
},
"bugs": {
"url": "https://github.com/sweetim/linux-top-parser"
},
"devDependencies": {
"@swc/core": "^1.3.37",
"@types/prettyjson": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/coverage-c8": "^0.29.1",
"eslint": "^8.34.0",
"ts-node": "^10.9.1",
"type-fest": "^3.6.1",
"typescript": "^5.0.2",
"vitest": "^0.30.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^10.0.0",
"date-fns": "^2.29.3",
"prettyjson": "^1.2.5"
},
"files": [
"lib",
"LICENSE",
"README.md",
"package.json"
],
"wallaby": {
"autoDetect": true,
"files": [
"src/**/*.ts",
"!src/**/*.test.ts"
],
"tests": [
"src/**/*.test.ts",
"test/**/*.test.ts"
]
}
}