-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 2.4 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
{
"name": "fixyz",
"version": "1.0.0",
"description": "Let's FIX!",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run test:collab-webhook && npm run test:edge-gateway && npm run test:vault && npm run test:infra-bootstrap && npm run test:observability && npm run test:db-ha && npm run test:redis-recovery && npm run test:client-parity && npm run test:supply-chain",
"test:be:critical-contract-suites": "node scripts/run-gradle-wrapper.js --cwd BE --no-daemon :channel-service:criticalContractSuites",
"test:collab-webhook": "node --test tests/collab-webhook/*.test.js",
"test:supply-chain": "node --test tests/supply-chain/*.test.cjs",
"capture:supply-chain:evidence": "node .github/scripts/supply-chain/capture-live-evidence.cjs",
"test:edge-gateway": "node --test tests/edge-gateway/*.test.js",
"test:vault": "node --test tests/vault/*.test.js",
"test:infra-bootstrap": "node --test tests/infra-bootstrap/*.test.js",
"test:observability": "node --test tests/observability/*.test.js",
"test:db-ha": "node --test tests/db-ha/*.test.js",
"test:redis-recovery": "node --test tests/redis-recovery/*.test.js",
"test:client-parity": "node --test tests/client-parity/*.test.js",
"lint:collab-webhook": "node --check .github/scripts/collab-webhook/*.js",
"lint:supply-chain": "node --check .github/scripts/supply-chain/security-utils.cjs && node --check .github/scripts/supply-chain/run-security-baseline.cjs && node --check .github/scripts/supply-chain/capture-live-evidence.cjs",
"lint:edge-gateway": "bash -n docker/nginx/scripts/*.sh",
"lint:vault": "bash -n docker/vault/init/*.sh docker/vault/scripts/*.sh .github/scripts/vault/*.sh scripts/vault/*.sh",
"lint:infra-bootstrap": "bash -n scripts/infra-bootstrap/*.sh",
"lint:observability": "bash -n scripts/observability/*.sh && node --check scripts/observability/*.mjs",
"lint:db-ha": "bash -n docker/mysql/ha/scripts/*.sh",
"lint:redis-recovery": "bash -n scripts/redis-recovery/*.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoYouLikeFIx/FIXYZ.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/DoYouLikeFIx/FIXYZ/issues"
},
"homepage": "https://github.com/DoYouLikeFIx/FIXYZ#readme",
"devDependencies": {
"husky": "^9.1.7"
}
}