-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.79 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
{
"name": "fm-gofer",
"type": "module",
"version": "1.10.0",
"description": "Framework for calling FileMaker scripts from a webviewer and retrieving results using callback promises.",
"homepage": "https://github.com/jwillinghalpern/fm-gofer#readme",
"issues": "https://github.com/jwillinghalpern/fm-gofer/issues",
"source": "src/index.ts",
"main": "./dist/fm-gofer.umd.cjs",
"module": "./dist/fm-gofer.js",
"types": "dist/fm-gofer.d.ts",
"browserslist": "defaults",
"exports": {
".": {
"import": "./dist/fm-gofer.js",
"require": "./dist/fm-gofer.umd.cjs",
"default": "./dist/fm-gofer.js"
},
"./polyfill-ie11": "./dist/polyfill-ie11.js"
},
"files": [
"dist"
],
"keywords": [
"filemaker",
"javascript",
"typescript",
"web viewer",
"webviewer",
"promise",
"callback",
"fetch"
],
"scripts": {
"test": "vitest",
"test:verbose": "vitest --reporter verbose",
"coverage": "vitest run --coverage",
"build": "vite build && tsc --emitDeclarationOnly && node scripts/rename-dts.js",
"build:example": "vite build example/src --config ./vite.config.example.ts && touch example/dist/HTML_FOR_FM.txt || echo \"\\nbe sure to run 'npm run build' before running this script\n\""
},
"author": "Josh Willing Halpern <josh@willingapps.com>",
"license": "ISC",
"sourceType": "module",
"sideEffects": false,
"devDependencies": {
"@vitest/coverage-c8": "^0.23.1",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-singlefile": "^0.11.1",
"vitest": "^0.23.0"
}
}