-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.6 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
60
61
62
63
64
{
"name": "@finos/fdc3-standard",
"version": "2.2.2-beta.1",
"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": {
"clean": "rimraf dist",
"build": "tsc --module es2022",
"test": "tsc && jest",
"lint": "eslint src/ --fix"
},
"prettier": {
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"endOfLine": "auto",
"printWidth": 120
},
"jest-junit": {
"outputName": "test-results.xml"
},
"dependencies": {
"@finos/fdc3-context": "2.2.2-beta.1",
"@finos/fdc3-schema": "2.2.2-beta.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/jest": "29.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"globals": "^15.14.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "^16.0.0",
"jest-mock-extended": "3.0.5",
"jsonschema": "^1.4.0",
"prettier": "3.4.1",
"quicktype": "23.0.78",
"rimraf": "^6.0.1",
"ts-jest": "29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.3"
}
}