-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
75
76
77
78
79
{
"name": "fm-odata-client",
"version": "3.0.1",
"description": "FileMaker OData client developed by Soliant Consulting",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./claris-id": {
"types": "./dist/ClarisId.d.ts",
"import": "./dist/ClarisId.js",
"require": "./dist/ClarisId.cjs"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/soliantconsulting/fm-odata-client.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "mocha --extension=ts test/**/*.ts",
"coverage": "nyc npm test",
"test-ci": "nyc --reporter=lcov npm test",
"build": "tsc --noEmit && tsup",
"check": "biome check . --write"
},
"author": "Soliant Consulting",
"keywords": [
"FileMaker",
"REST",
"API",
"OData",
"Typescript"
],
"license": "MIT",
"engines": {
"node": ">=0.20"
},
"dependencies": {
"file-type": "^19.6.0"
},
"peerDependencies": {
"amazon-cognito-identity-js": "^4.5.12"
},
"peerDependenciesMeta": {
"amazon-cognito-identity-js": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.5",
"@types/sinon": "^17.0.3",
"amazon-cognito-identity-js": "^6.3.12",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"fetch-mock": "^12.0.2",
"lefthook": "^1.8.2",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}