forked from couchbase/couchnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"bugs": {
"url": "http://www.couchbase.com/issues/browse/JSCBC"
},
"description": "The official Couchbase Node.js Client Library.",
"engines": {
"node": ">=10.0.0"
},
"homepage": "http://www.couchbase.com/communities/nodejs",
"keywords": [
"couchbase",
"libcouchbase",
"memcached",
"nosql",
"json",
"document"
],
"main": "dist/couchbase.js",
"types": "dist/couchbase.d.ts",
"license": "Apache-2.0",
"name": "couchbase",
"dependencies": {
"bindings": "^1.5.0",
"debug": "^4.3.2",
"nan": "^2.15.0",
"parse-duration": "^1.0.0",
"prebuild-install": "^6.1.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@tsconfig/node10": "^1.0.8",
"@types/bindings": "^1.5.1",
"@types/debug": "^4.1.7",
"@types/node": "^16.7.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"expose-gc": "^1.0.0",
"mocha": "^8.4.0",
"npm-check-updates": "^11.8.3",
"nyc": "^15.1.0",
"prebuild": "^10.0.1",
"prettier": "^2.3.2",
"semver": "^7.3.5",
"ts-mocha": "^8.0.0",
"ts-node": "^10.2.1",
"typedoc": "^0.21.6",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "http://github.com/couchbase/couchnode.git"
},
"version": "3.2.4-dev",
"config": {
"native": false
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "node-gyp build && tsc",
"rebuild": "node-gyp rebuild && tsc",
"prebuild": "prebuild --verbose --strip",
"prepare": "tsc",
"build-docs": "typedoc",
"test": "ts-mocha test/*.test.*",
"test-fast": "ts-mocha test/*.test.* -ig '(slow)'",
"cover": "nyc ts-mocha test/*.test.*",
"cover-fast": "nyc ts-mocha test/*.test.* -ig '(slow)'",
"lint": "eslint ./lib/ ./test/",
"check-deps": "ncu"
}
}