forked from finos/FDC3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.31 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
{
"name": "@finos/fdc3",
"version": "1.2.0",
"author": "Fintech Open Source Foundation (FINOS)",
"homepage": "https://fdc3.finos.org",
"repository": {
"type": "git",
"url": "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",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --verbose",
"lint": "tsdx lint src/api test",
"prepare": "tsdx build",
"typegen": "cd src/context && quicktype -s schema --src-urls schemas.json -o ContextTypes.ts"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"endOfLine": "auto",
"printWidth": 120
},
"resolutions": {
"node-fetch": "^2.6.1",
"node-notifier": "^8.0.1",
"yargs-parser": "^13.1.2",
"y18n": "^4.0.1"
},
"devDependencies": {
"husky": "^4.3.0",
"jest-mock-extended": "^1.0.13",
"quicktype": "^15.0.258",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
}
}