-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.67 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
{
"name": "@cap-js-community/mtx-tool",
"version": "0.8.7",
"description": "Multitenancy and Extensibility Tool is a cli to reduce operational overhead for multitenant Cloud Foundry applications",
"bin": {
"mtx": "bin/mtx.js"
},
"main": "src/index.js",
"files": [
"bin",
"src"
],
"scripts": {
"patch": "npx patch-package",
"test": "jest",
"test:remove-inline-snapshots": "npx replace '\\.toMatchInlineSnapshot\\(\\s*`[\\s\\S]*?`\\s*\\);' '.toMatchInlineSnapshot();' test -r --include='*.test.js'",
"test:record": "npm run test:record:reg && npm run test:record:cds && npm run test:record:hdi",
"test:update": "jest --updateSnapshot",
"test:reg": "jest test/tenantRegistry.nock.test.js",
"test:cds": "jest test/capMultitenancy.nock.test.js",
"test:hdi": "jest test/hanaManagement.nock.test.js",
"test:record:reg": "npx cross-env NOCK_MODE=record jest test/tenantRegistry.nock.test.js --runInBand --updateSnapshot && jest test/tenantRegistry.nock.test.js --runInBand --updateSnapshot",
"test:record:cds": "npx cross-env NOCK_MODE=record jest test/capMultitenancy.nock.test.js --runInBand --updateSnapshot && jest test/capMultitenancy.nock.test.js --runInBand --updateSnapshot",
"test:record:hdi": "npx cross-env NOCK_MODE=record jest test/hanaManagement.nock.test.js --runInBand --updateSnapshot && jest test/hanaManagement.nock.test.js --runInBand --updateSnapshot",
"lint": "npm run eslint && npm run prettier",
"lint:ci": "npm run eslint:ci && npm run prettier:ci",
"eslint": "eslint --fix .",
"eslint:ci": "eslint .",
"prettier": "prettier --write --log-level error .",
"prettier:ci": "prettier --check .",
"pack": "npm pack",
"docs": "cd docs && bundle exec jekyll serve",
"docs:install": "cd docs && npx shx rm -rf vendor Gemfile.lock && bundle install",
"upgrade-lock": "npx shx rm -rf package-lock.json node_modules && npm i --package-lock && npm run patch"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"node-fetch": "^2.7.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.3.0",
"typescript": "^5.4.5"
},
"homepage": "https://cap-js-community.github.io/mtx-tool/",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-js-community/mtx-tool.git"
},
"bugs": {
"url": "https://github.com/cap-js-community/mtx-tool/issues"
},
"keywords": [
"cli",
"tool",
"btp",
"operations",
"multitenancy"
],
"author": "Richard Lindner <[email protected]>",
"license": "Apache-2.0"
}