forked from couchbase/couchnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "couchbase-serverless",
"version": "0.0.3",
"description": "Couchbase serverless",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/",
"docs/",
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc --skipLibCheck",
"test": "mocha src/*test.ts --exit",
"cluster": "mocha src/cluster.test.ts --exit",
"col": "mocha src/collection.test.ts --exit"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/couchset/couchbase-serverless.git"
},
"author": "Ceddy Muhoza <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/couchset/couchbase-serverless/issues"
},
"homepage": "https://github.com/couchset/couchbase-serverless#readme",
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/dotenv": "^6.1.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.6",
"chai": "^5.1.1",
"couchbase": "^4.4.2",
"dotenv": "^16.4.5",
"mocha": "^10.7.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
}
}