-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "@restorecommerce/resource-base-interface",
"version": "1.6.5",
"description": "Restorecommerce Resource Base Interface",
"main": "lib/index.js",
"author": "n-fuse GmbH",
"repository": {
"type": "git",
"url": "https://github.com/restorecommerce/resource-base-interface.git"
},
"license": "MIT",
"keywords": [
"restore",
"commerce",
"resource",
"base",
"interface"
],
"dependencies": {
"@restorecommerce/chassis-srv": "1.6.5",
"@restorecommerce/grpc-client": "^2.2.5",
"@restorecommerce/kafka-client": "1.2.20",
"@restorecommerce/rc-grpc-clients": "5.1.42",
"@restorecommerce/service-config": "^1.0.16",
"lodash": "^4.17.21",
"redis": "^4.7.0"
},
"devDependencies": {
"@restorecommerce/dev": "0.0.13",
"@types/lodash": "4.17.13",
"@types/mocha": "10.0.9",
"@types/nconf": "0.10.7",
"@types/redis": "^4.0.10",
"arangojs": "9.1.0",
"cross-env": "^7.0.3",
"eslint": "9.14.0",
"mocha": "11.0.0",
"npm-run-all": "^4.1.5",
"nyc": "17.1.0",
"rimraf": "6.0.1",
"should": "^13.2.3",
"ts-node": "^10.9.2",
"typescript": "5.6.3"
},
"scripts": {
"test": "npm run lint && nyc npm run mocha",
"pretest": "npm run build",
"tsctests": "tsc -d -p tsconfig.test.json",
"lint": "eslint src",
"mocha": "cross-env NODE_ENV=test; mocha --full-trace --exit --trace-warnings;",
"test-debug": "npm run lint && npm run mocha-debug",
"mocha-debug": "cross-env NODE_ENV=test; mocha --full-trace --inspect-brk",
"lcov-report": "nyc report --reporter=lcov",
"build:tsc": "tsc -d",
"build:tsc:watch": "tsc -d --watch",
"build:clean": "rimraf lib",
"build": "npm-run-all lint build:clean build:tsc"
},
"engines": {
"node": ">= 20.0.0"
}
}