-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@stroncium/procfs",
"version": "1.2.1",
"description": "Zero dependency library for reading and parsing various files from `procfs` for Node.js, implemented in pure JS.",
"main": "index.js",
"files": [
"lib/**"
],
"scripts": {
"build:api-xml": "haxe -D use_rtti_doc -cp haxe -xml ./builder/.tmp/api.xml procfs.Procfs",
"build:clean-api-xml": "rm ./builder/.tmp/api.xml ./builder/.tmp/Main.n",
"build:docs-asserts": "cd ./builder/.tmp && SRC=./api.xml DST_API_MD=../../API.md DST_ASSERTS=../../test/fixtures/type/asserts.js haxe -cp ../ -x Main",
"build": "npm run build:api-xml && npm run build:docs-asserts && npm run build:clean-api-xml",
"coverage": "codecov",
"fulltest": "npm run build && npm run test",
"test": "nyc ava && xo"
},
"engines": {
"node": ">=8"
},
"author": "Yanis Benson <[email protected]>",
"keywords": [
"proc",
"procfs",
"process",
"uptime",
"stat",
"statm",
"status",
"mountinfo",
"cpuinfo",
"loadavg",
"meminfo",
"diskstats",
"io",
"devices",
"filesystems",
"partitions",
"swaps",
"autogroup",
"cgroups",
"cmdline",
"comm",
"cpuset",
"cwd",
"environ",
"exe",
"fd",
"gid_map",
"limits",
"oom_score",
"personality",
"setgroups",
"timerslack_ns",
"uid_map",
"cmdline",
"config",
"version",
"nodejs",
"linux"
],
"license": "CC0-1.0",
"homepage": "https://github.com/stroncium/nodejs-procfs",
"bugs": {
"url": "https://github.com/stroncium/nodejs-procfs/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/stroncium/nodejs-procfs.git"
},
"devDependencies": {
"ava": "^1.4.1",
"codecov": "^3.5.0",
"haxe": "^5.0.10",
"joi": "^14.3.1",
"nyc": "^14.1.1",
"xo": "^0.24.0"
},
"xo": {
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"prefer-const": [
"off"
],
"padding-line-between-statements": [
"off"
],
"radix": [
"off"
],
"no-return-assign": [
"off"
],
"no-control-regex": [
"off"
],
"capitalized-comments": [
"off"
],
"spaced-comment": [
"off"
],
"unicorn/filename-case": [
"off"
],
"unicorn/no-hex-escape": [
"off"
],
"prefer-destructuring": [
"off"
],
"operator-assignment": [
"off"
]
}
}
}