forked from aerospike/aerospike-client-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.53 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
{
"name": "aerospike",
"version": "5.10.0",
"description": "Aerospike Client Library",
"keywords": [
"aerospike",
"database",
"nosql"
],
"homepage": "https://github.com/aerospike/aerospike-client-nodejs",
"license": "Apache-2.0",
"main": "lib/aerospike",
"types": "typings/index.d.ts",
"engines": {
"node": ">=4"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aerospike/aerospike-client-nodejs.git"
},
"bugs": {
"url": "https://github.com/aerospike/aerospike-client-nodejs/issues"
},
"binary": {
"module_name": "aerospike",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://www.npmjs.com/package/aerospike"
},
"scripts": {
"preinstall": "npm install @mapbox/node-pre-gyp",
"install": "npm run build",
"build": "node-pre-gyp install --fallback-to-build",
"test": "mocha",
"test-noserver": "GLOBAL_CLIENT=false mocha -g '#noserver'",
"lint": "standard",
"posttest": "npm run lint",
"coverage": "nyc npm test && nyc --reporter=lcov report",
"codecov": "codecov",
"prepush": "npm test",
"apidocs": "jsdoc -c jsdoc.json",
"cppcheck": "cppcheck --quiet --enable=warning,style -I src/include src/main/",
"valgrind": "valgrind node ./node_modules/mocha/bin/_mocha -R dot -g '#slow' -i",
"prepare": "husky install",
"removeExtraBinaries": "node ./scripts/prebuiltBinding.js"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"bindings": "^1.5.0",
"minimatch": "^3.1.2",
"nan": "^2.17.0",
"node-gyp": "^8.4.1",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@types/node": "^17.0.45",
"chai": "^4.3.7",
"choma": "^1.2.1",
"codecov": "^3.8.3",
"deep-eql": "^4.1.3",
"dirty-chai": "^2.0.1",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"mocha-clean": "^1.0.0",
"nyc": "^15.1.0",
"p-throttle": "^3.1.0",
"semver": "^7.5.4",
"standard": "^16.0.4",
"tmp": "^0.1.0",
"yargs": "^15.4.1"
},
"standard": {
"ignore": [
"apidocs",
"tmp-*.js",
"/*.js",
"libuv-v*"
]
},
"files": [
"aerospike-client-c.ini",
"aerospike-client-c.sha256",
"binding.gyp",
"benchmarks/",
"examples/",
"lib/",
"scripts/",
"src/",
"test/",
"typings/"
]
}