-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.6 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": "fm-data-api-client",
"version": "1.4.0",
"description": "FileMaker Data API Client",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"lint": "eslint .",
"test": "jest test --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/soliantconsulting/fm-data-api-client.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"FileMaker",
"REST",
"API",
"Data",
"Typescript"
],
"author": "Soliant Consulting",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@js-joda/core": "^5.2.0",
"@rollup/plugin-typescript": "^8.3.4",
"@tsconfig/node18": "^18.0.0",
"@types/form-data": "^2.5.0",
"@types/into-stream": "^3.1.1",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.5.7",
"@types/sinon": "^10.0.11",
"eslint": "^8.13.0",
"eslint-config-dasprid": "^0.3.2",
"get-stream": "^6.0.1",
"husky": "^8.0.1",
"jest": "^29.0.0",
"lint-staged": "^13.0.3",
"nock": "^13.2.4",
"rollup": "^2.78.0",
"sinon": "^14.0.0",
"ts-jest": "^29.0.0",
"typescript": "~5.2.0"
},
"dependencies": {
"form-data": "^4.0.0",
"into-stream": "^6.0.0",
"node-fetch": "^2.6.7"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@js-joda/core": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}