forked from couchbase/couchnode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·55 lines (55 loc) · 1.18 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
{
"description": "The unofficial Couchbase Node.js Client Library.",
"engines": {
"npm": "^6.4.1",
"yarn": "^1.9.3",
"node": ">=8.9.0"
},
"version": "3.1.1",
"keywords": [
"couchbase",
"libcouchbase",
"memcached",
"nosql",
"json",
"document"
],
"main": "./lib/couchbase",
"license": "Apache-2.0",
"name": "@corbinu/couchbase",
"dependencies": {
"@types/node": "^12.19.5",
"bindings": "^1.5.0",
"debug": "^4.3.1",
"nan": "^2.14.2",
"parse-duration": "^0.4.4",
"prebuild-install": "^6.0.0",
"qs": "^6.9.5"
},
"typings": "types.d.ts",
"devDependencies": {
"cls-hooked": "^4.2.2",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"mocha": "^8.2.1",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"prebuild": "^10.0.1",
"semver": "^7.3.4",
"tsd-jsdoc": "^2.5.0",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/corbinu/couchnode.git"
},
"config": {
"unsafe-perm": true
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "mocha",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --verbose --strip"
}
}