-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "@datadog/native-appsec",
"version": "8.4.0",
"description": "Node.js bindings for libddwaf",
"main": "index.js",
"libddwaf_version": "1.22.0",
"scripts": {
"install": "exit 0",
"rebuild": "node-gyp rebuild",
"postrebuild": "node scripts/postrebuild",
"lint": "eslint .",
"test": "mocha",
"licenses": "node scripts/check_licenses.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataDog/dd-native-appsec-js.git"
},
"keywords": [
"datadog",
"appsec"
],
"author": "Datadog Inc. <info@datadoghq.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DataDog/dd-native-appsec-js/issues"
},
"homepage": "https://github.com/DataDog/dd-native-appsec-js#readme",
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.1.1",
"node-addon-api": "^6.0.0",
"tar": "^6.1.11"
},
"dependencies": {
"node-gyp-build": "^3.9.0"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js",
"index.d.ts",
"package.json",
"README.md",
"LICENSE",
"LICENSE-3rdparty.csv",
"prebuilds/**/*"
]
}