forked from aerospike/aerospike-client-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.74 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
{
"name": "aerospike",
"version": "3.14.0",
"description": "Aerospike Client Library",
"keywords": [
"aerospike",
"database",
"nosql"
],
"homepage": "https://github.com/aerospike/aerospike-client-nodejs",
"license": "Apache-2.0",
"main": "lib/aerospike",
"engines": {
"node": ">=4"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64"
],
"repository": {
"type": "git",
"url": "https://github.com/aerospike/aerospike-client-nodejs"
},
"bugs": {
"url": "https://github.com/aerospike/aerospike-client-nodejs/issues"
},
"scripts": {
"test": "mocha",
"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"
},
"dependencies": {
"bindings": "^1.3.0",
"minimatch": "^3.0.4",
"nan": "^2.14.0"
},
"devDependencies": {
"chai": "^4.2.0",
"choma": "^1.2.1",
"codecov": "^3.6.1",
"deep-eql": "^4.0.0",
"dirty-chai": "^2.0.1",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.6.3",
"mocha": "^7.0.0",
"mocha-clean": "^1.0.0",
"nyc": "^15.0.0",
"semver": "^7.1.1",
"standard": "^14.3.1",
"tmp": "^0.1",
"yargs": "^15.1.0"
},
"standard": {
"ignore": [
"apidocs",
"tmp-*.js"
]
},
"files": [
"aerospike-client-c.ini",
"aerospike-client-c.sha256",
"binding.gyp",
"benchmarks/",
"examples/",
"lib/",
"modules/lua-core/",
"scripts/",
"src/",
"test/"
]
}