-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
74 lines (74 loc) · 2.9 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
69
70
71
72
73
74
{
"name": "@finos/fdc3",
"version": "2.1.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/index.js",
"typings": "dist/index.d.ts",
"module": "dist/fdc3.esm.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"start": "rollup -c rollup.config.js --bundleConfigAsCjs -w",
"prebuild": "npm run clean && npm run typegen && npm run typegen-browser && npm run typegen-bridging && npm run lint",
"build": "rollup -c rollup.config.js --silent --bundleConfigAsCjs",
"test": "jest --verbose",
"lint": "eslint src/ test/ --ext .ts --fix",
"prepack": "npm run build",
"typegen": "cd schemas && node ../s2tQuicktypeUtil.js context ../src/context/ContextTypes.ts",
"typegen-browser": "cd schemas && node ../s2tQuicktypeUtil.js api/api.schema.json api/common.schema.json context/context.schema.json api ../src/api/BrowserTypes.ts",
"typegen-bridging": "cd schemas && node ../s2tQuicktypeUtil.js api/api.schema.json api/common.schema.json api/broadcastRequest.schema.json api/findInstancesRequest.schema.json api/findInstancesResponse.schema.json api/findIntentRequest.schema.json api/findIntentResponse.schema.json api/findIntentsByContextRequest.schema.json api/findIntentsByContextResponse.schema.json api/getAppMetadataRequest.schema.json api/getAppMetadataResponse.schema.json api/openRequest.schema.json api/openResponse.schema.json api/raiseIntentRequest.schema.json api/raiseIntentResponse.schema.json api/raiseIntentResultResponse.schema.json context/context.schema.json bridging ../src/bridging/BridgingTypes.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run prebuild"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"endOfLine": "auto",
"printWidth": 120
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"husky": "^4.3.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-mock-extended": "3.0.5",
"prettier": "3.2.5",
"quicktype": "23.0.78",
"rimraf": "^5.0.5",
"rollup": "4.22.4",
"ts-jest": "29.1.2",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.14.1"
}
}