-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "@loopback/test-repository-cloudant",
"description": "Acceptance tests for `@loopback/repository` + `loopback-connector-cloudant`",
"version": "7.0.12",
"private": true,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "acceptance/repository-cloudant"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build": "lb-tsc",
"clean": "lb-clean loopback-test-repository-cloudant*.tgz dist *.tsbuildinfo package",
"pretest": "npm run build",
"test": "npm run mocha",
"mocha": "lb-mocha \"dist/__tests__/**/*.js\"",
"verify": "npm pack && tar xf loopback-test-repository-cloudant*.tgz && tree package && npm run clean",
"docker:setup": "node ./docker.setup.js"
},
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"devDependencies": {
"@loopback/build": "^12.0.11",
"@loopback/eslint-config": "^16.0.1",
"@loopback/repository": "^8.0.11",
"@loopback/repository-tests": "^0.25.12",
"@types/node": "^20.19.39",
"async": "^3.2.6",
"chalk": "^4.1.2",
"debug": "^4.4.3",
"dockerode": "^3.3.5",
"lodash": "^4.18.1",
"loopback-connector-cloudant": "2.5.0",
"ms": "2.1.3",
"tslib": "^2.8.1",
"typescript": "~5.9.3"
}
}