-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.09 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
{
"name": "bpfcc",
"version": "1.0.2",
"description": "Frontend / bindings for BPF Compiler Collection (BCC)",
"author": "Alba Mendez <[email protected]>",
"keywords": [
"bpf",
"ebpf",
"kprobes",
"linux",
"kernel",
"bcc"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mildsunrise/node_bpfcc.git"
},
"scripts": {
"clean": "node-gyp clean; rm -rf dist",
"configure": "node-gyp configure",
"build": "node-gyp build && tsc",
"prepare": "rm -rf dist; tsc",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"docs": "typedoc --out docs lib/index.ts",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"dist",
"src",
"binding.gyp"
],
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"index.ts"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"collectCoverageFrom": [
"lib/**/*.{js,ts}"
]
},
"dependencies": {
"@types/node": "^12.0.0",
"node-addon-api": "^3.0.1"
},
"peerDependencies": {
"bpf": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"bpf": "^1.2.0",
"coveralls": "^3.0.2",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
}
}