-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
113 lines (113 loc) · 3.15 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
{
"name": "aerospike",
"version": "6.0.1",
"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-prereq": "cd ts-test; npm install ..; run: npm i --save-dev @types/jest; run: npm i --save-dev @types/chai; cd ..;",
"test": "rm -rf ts-test/dist; cd ts-test; npx tsc ; cp tests/udf.lua dist/udf.lua ; mocha dist/${npm_config_testfile:-} ",
"test-dry-run": "mocha --dry-run",
"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 run test dist",
"apidocs": "jsdoc -c jsdoc.json",
"build-docs": "npx typedoc --plugin typedoc-plugin-rename-defaults --entryPointStrategy expand typings/index.d.ts",
"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": {
"ansi-colors": "^4.1.3",
"bindings": "^1.5.0",
"minimatch": "^3.1.2",
"nan": "^2.22.0",
"node-gyp": "^10.1.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@mapbox/node-pre-gyp": "^1.0.11",
"@types/node": "^22.7.4",
"chai": "^4.4.1",
"choma": "^1.2.1",
"codecov": "^3.8.3",
"deep-eql": "^4.1.3",
"eslint": "^8.57.1",
"globals": "^15.11.0",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"mocha-clean": "^1.0.0",
"nyc": "^15.1.0",
"p-throttle": "^3.1.0",
"semver": "^7.6.0",
"standard": "^17.1.0",
"tmp": "^0.2.3",
"typedoc": "^0.26.7",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"yargs": "^17.7.2"
},
"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/",
"ts-test/",
"typings/"
]
}