-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 2.38 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
{
"name": "nuodb",
"author": "Dassault Systèmes SE",
"description": "The official NuoDB database driver for Node.js. Provides a high-level SQL API on top of the NuoDB Node.js Addon.",
"license": "BSD-3-Clause",
"version": "3.7.4",
"main": "index.js",
"keywords": [
"nuodb",
"database",
"SQL",
"driver",
"official"
],
"repository": {
"type": "git",
"url": "git://github.com/nuodb/node-nuodb.git"
},
"bugs": {
"url": "git://github.com/nuodb/node-nuodb/issues"
},
"engines": {
"node": ">=8"
},
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.17.0",
"nconf": "^0.12.0",
"node-gyp": "^8.4.1",
"pino": "^8.14.1",
"segfault-handler": "^1.3.0",
"ssh-exec": "^2.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"async": "^3.2.3",
"eslint": "^8.6.0",
"js-beautify": "^1.14.9",
"mocha": "^9.2.2",
"nyc": "^17.1.0",
"okay": "^1.0.0",
"should": "^13.2.3"
},
"scripts": {
"build": "node-gyp rebuild -d",
"lint": "eslint index.js lib/*.js test/*.js",
"this-test": "node-gyp rebuild -d && npm run lint && mocha --reporter spec --bail --check-leaks ",
"this-coverage": "node-gyp rebuild -d && npm run lint && nyc --reporter=lcov --reporter=text-lcov mocha --reporter spec --bail --check-leaks ",
"test": "node-gyp rebuild -d && npm run lint && mocha --reporter spec --timeout 10000 --check-leaks test/",
"test-smoke": "node-gyp rebuild -d && npm run lint && mocha --reporter spec --timeout 10000 --check-leaks --exclude='test/nightly/**' test/",
"coverage-smoke": "node-gyp rebuild -d && npm run lint && nyc --report-dir /coverage --reporter=lcov --reporter=text-lcov mocha --reporter spec --timeout 10000 --check-leaks --exclude='test/nightly/**' test/",
"test-nightly": "node-gyp rebuild -d && npm run lint && mocha --reporter spec --timeout 10000 --check-leaks test/nightly",
"valgrind": "node-gyp rebuild -d && G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind -v --tool=memcheck --leak-check=full --show-reachable=yes --num-callers=40 --log-file=/valgrind/valgrind.log $(which node) valgrind.js",
"valgrind-test": "node-gyp rebuild -d && G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind -v --tool=memcheck --leak-check=full --show-reachable=yes --num-callers=40 --log-file=/valgrind/valgrind.log mocha --reporter spec --bail --check-leaks test/"
}
}