-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "@finos/fdc3-get-agent",
"version": "2.2.1-beta.4",
"author": "Fintech Open Source Foundation (FINOS)",
"homepage": "https://fdc3.finos.org",
"repository": {
"type": "git",
"url": "git+https://github.com/finos/FDC3.git"
},
"publishConfig": {
"tag": "latest"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --module es2022",
"test": "tsc && nyc --nycrc-path .nycrc.json cucumber-js",
"test:coverage-test-infra": "tsc && nyc --nycrc-path .nycrc.test-coverage.json cucumber-js",
"clean": "rimraf dist cucumber-report.html coverage coverage-test-infra .nyc_output node_modules test-results.xml",
"lint": "eslint src/"
},
"dependencies": {
"@finos/fdc3-agent-proxy": "2.2.1-beta.4",
"@finos/fdc3-context": "2.2.1-beta.4",
"@finos/fdc3-schema": "2.2.1-beta.4",
"@finos/fdc3-standard": "2.2.1-beta.4",
"@types/uuid": "^10.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@cucumber/cucumber": "10.3.1",
"@cucumber/messages": "^28.1.0",
"@eslint/js": "^9.19.0",
"@finos/testing": "2.2.1-beta.4",
"@types/node": "^20.16.11",
"@types/wtfnode": "^0.7.3",
"eslint": "^9.32.0",
"eslint-config-prettier": "^9.1.0",
"expect": "^29.7.0",
"globals": "^15.14.0",
"jsonpath-plus": "^10.1.0",
"nyc": "17.1.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.17.0",
"wtfnode": "^0.9.3"
}
}