-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 979 Bytes
/
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
{
"name": "domino-nsf",
"version": "0.3.1",
"description": "Nodejs driver for Domino nsf databases",
"homepage": "https://github.com/nthjelme/nodejs-domino",
"scripts": {
"commit": "git-cz",
"test": "mocha index.test.js"
},
"dependencies": {},
"keywords": [
"database",
"domino",
"json",
"nosql",
"nsf"
],
"os": [
"win32",
"linux"
],
"cpu": [
"ia32",
"x64"
],
"license": "MIT",
"main": "index.js",
"author": {
"email": "nhjelme@gmail.com",
"name": "Nils Tarjei Hjelme"
},
"maintainers": [
{
"name": "nhjelme",
"email": "nhjelme@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/nthjelme/nodejs-domino.git"
},
"devDependencies": {
"chai": "^3.5.0",
"cz-conventional-changelog": "^1.2.0",
"mocha": "^3.1.2",
"nan": "^2.8.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}