-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.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
{
"name": "informix",
"version": "1.0.0",
"description": "A node.js native client for IBM Informix",
"main": "index.js",
"gypfile": true,
"scripts": {
"codecov": "codecov",
"coverage": "istanbul cover _mocha -- --reporter spec",
"coverage:lcovonly": "istanbul cover _mocha --report lcovonly -- --reporter spec",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs": "jsdoc -c jsdoc-conf.json ./README.md",
"lint": "jshint index.js examples lib test",
"precodecov": "npm run coverage:lcovonly",
"precoveralls": "npm run coverage:lcovonly",
"test": "mocha"
},
"directories": {
"example": "./examples",
"lib": "./lib"
},
"engines": {
"node": ">= 0.12.0"
},
"files": [
"gyp",
"lib",
"src",
"binding.gyp",
"index.js"
],
"keywords": [
"informix"
],
"author": "Uditha Atukorala <[email protected]>",
"license": "ISC",
"repository": "nukedzn/node-informix",
"dependencies": {
"bindings": "^1.3.1",
"debug": "^4.1.1",
"nan": "^2.12.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"moment": "^2.23.0",
"sinon": "^1.17.4"
}
}