-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.31 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
51
52
53
54
55
56
57
58
59
{
"name": "compliance-adapters",
"private": true,
"version": "0.1.0",
"description": "Integration adapters connecting Stellar compliance primitives to SEP-10 auth, sanctions oracles, and Horizon event streams.",
"bin": {
"compliance-adapters": "bin/compliance-adapters.js"
},
"workspaces": [
"logger",
"tracing-types",
"sep10-auth",
"sanctions-oracle",
"horizon-listener",
"examples/full-stack-demo"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present -- --testPathIgnorePatterns=e2e-tests",
"test:cli": "jest --config jest.config.js",
"test:coverage": "npm test -- --coverage",
"report:coverage": "node scripts/report-coverage.js",
"test:e2e:start": "docker-compose -f e2e-tests/docker-compose.yml up -d",
"test:e2e:stop": "docker-compose -f e2e-tests/docker-compose.yml down -v",
"test:e2e:test-only": "npm run test --workspace=e2e-tests",
"test:e2e": "npm run test:e2e:start && npm run test:e2e:test-only ; npm run test:e2e:stop",
"test:e2e:ci": "npm run test:e2e:start && npm run test:e2e:test-only ; docker-compose -f e2e-tests/docker-compose.yml down -v || true",
"lint": "eslint sep10-auth/src sanctions-oracle/src horizon-listener/src tracing-types/src examples/full-stack-demo/server.js --ext .ts,.js",
"check:license": "node scripts/check-license-headers.js",
"check:changelog": "node scripts/check-root-changelog.js",
"format": "prettier --check .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"changelog": "changeset status",
"release": "npm run check:changelog && changeset publish",
"apply-package-labels": "node ./scripts/apply-package-labels.js"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"license": "MIT"
}