-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.98 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
{
"name": "@slimio/winelog",
"version": "1.0.0",
"description": "Windows Events log reader - low-level C++/Node.js N-API binding",
"main": "index.js",
"husky": {
"hooks": {
"pre-push": "cross-env eslint index.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"prepublishOnly": "pkg-ok",
"prebuilds": "prebuildify --napi",
"build": "cross-env node-gyp configure && node-gyp build",
"test": "cross-env psp && nyc --reporter=lcov ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "codecov",
"report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/Winelog.git"
},
"keywords": [
"SlimIO",
"windows",
"event",
"events",
"logs",
"log",
"low-level",
"natif",
"reader",
"binding",
"napi",
"n-api",
"microsoft",
"eventlog",
"monitoring",
"security",
"application",
"system"
],
"files": [
"index.js",
"index.d.ts",
"binding.gyp",
"winelog.cpp",
"include",
"prebuilds"
],
"engines": {
"node": ">=13"
},
"author": "SlimIO",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/SlimIO/Winelog/issues"
},
"nyc": {
"check-coverage": false
},
"homepage": "https://github.com/SlimIO/Winelog#readme",
"dependencies": {
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"@slimio/is": "^1.5.1",
"@slimio/psp": "^0.11.1",
"ava": "^3.8.2",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"husky": "^4.2.5",
"jsdoc": "^3.6.4",
"node-gyp": "^5.1.1",
"nyc": "^15.0.1",
"pkg-ok": "^2.3.1",
"prebuildify": "^4.0.0"
}
}