-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "node-cubrid",
"version": "11.0.0",
"description": "This is a Node.js driver for CUBRID RDBMS. It is developed in 100% JavaScript and does not require specific platform compilation.",
"author": "CUBRID <[email protected]> (http://www.cubrid.org/)",
"repository": {
"type": "git",
"url": "git://github.com/cubrid/node-cubrid.git"
},
"license": "MIT",
"main": "index.js",
"keywords": [
"native",
"CUBRID",
"SQL",
"Database",
"RDBMS",
"driver",
"API",
"module"
],
"engines": {
"node": ">=4"
},
"scripts": {
"clean": "rm -rf coverage",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "./node_modules/eslint/bin/eslint.js .",
"test": "npm run lint && ./node_modules/mocha/bin/mocha test"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.14",
"eslint": "3.6.1",
"istanbul": "0.4.5",
"mocha": "3.0.2"
},
"dependencies": {
"moment-timezone": "0.5.37"
}
}