-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
{
"name": "@finos/fdc3",
"version": "2.2.0-alpha.3",
"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"
],
"workspaces": [
"packages/fdc3-schema",
"packages/fdc3-context",
"packages/fdc3-standard",
"packages/testing",
"packages/fdc3-agent-proxy",
"toolbox/fdc3-for-web/fdc3-web-impl",
"packages/fdc3-get-agent",
"packages/fdc3",
"packages/fdc3-commonjs",
"toolbox/fdc3-for-web/reference-ui",
"toolbox/fdc3-for-web/demo",
"toolbox/fdc3-workbench"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"merge": "istanbul-merge --out coverage/complete.json packages/fdc3-standard/coverage/coverage-final.json packages/fdc3-get-agent/coverage/coverage-final.json packages/fdc3-agent-proxy/coverage/coverage-final.json toolbox/fdc3-for-web/fdc3-web-impl/coverage/coverage-final.json",
"report": "nyc report --reporter json-summary --report-dir nyc-coverage-report --exclude-after-remap false --temp-dir coverage",
"lint": "npm run lint --workspaces --if-present",
"syncpack": "npm exec syncpack fix-mismatches --types 'local'",
"dev": "concurrently \"cd toolbox/fdc3-workbench && npm run dev\" \"cd toolbox/fdc3-for-web/reference-ui && npm run dev\" \"cd toolbox/fdc3-for-web/demo && npm run dev\"",
"prepare": "husky"
},
"prettier": {
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"endOfLine": "auto",
"printWidth": 120
},
"dependencies": {
"syncpack": "^12.4.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"istanbul-merge": "^2.0.0",
"lint-staged": "^15.2.10",
"nyc": "17.1.0",
"prettier": "3.4.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}