forked from couchbase/couchnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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": ">=12.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",
"cmake-js": "^6.3.2",
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/bindings": "^1.5.1",
"@types/debug": "^4.1.7",
"@types/node": "^17.0.41",
"@tsconfig/node12": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-node": "^11.1.0",
"expose-gc": "^1.0.0",
"mocha": "^10.0.0",
"npm-check-updates": "^13.1.2",
"nyc": "^15.1.0",
"prebuild": "^11.0.3",
"prettier": "^2.6.2",
"segfault-handler": "^1.3.0",
"semver": "^7.3.7",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "http://github.com/couchbase/couchnode.git"
},
"version": "4.1.1-dev",
"config": {
"native": false
},
"scripts": {
"install": "prebuild-install || cmake-js compile",
"build": "cmake-js build && tsc",
"rebuild": "cmake-js rebuild && tsc",
"prebuild": "prebuild --backend cmake-js --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"
}
}