-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.65 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
{
"name": "@kralphs/testcontainers-couchbase",
"version": "1.1.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prestart": "npm run build",
"start": "node .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"prepublishOnly": "npm run test:ci",
"prepare": "npm run build",
"build": "tsc",
"debug": "DEBUG=testcontainers node --inspect=0.0.0.0:9232 --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles"
},
"type": "module",
"author": "Kevin Ralphs <kevin.b.c.ralphs@gmail.com> (https://github.com/kralphs)",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"debug": "^4.3.4",
"yaml": "^2.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"couchbase": "^4.2.2",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"testcontainers": "^8.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kralphs/testcontainers-couchbase"
},
"homepage": "https://github.com/kralphs/testcontainers-couchbase#readme"
}