-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.43 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
{
"name": "onfmready.js",
"version": "2.1.11",
"description": "A developer utility for working with the FileMaker web viewer JS object in FileMaker Pro/WebDirect.",
"main": "./dist/onfmready.min.js",
"files": [
"dist/**/*.js"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run transpile:es2020 && npm run transpile:es5 && npm run unsupport && npm run collapse && npm run minify",
"minify": "rollup -c",
"unsupport": "node scripts/unsupport.js",
"collapse": "node scripts/collapse.js",
"build:es2020": "npm run transpile:es2020 && npm run unsupport && npm run collapse",
"build:es5": "npm run transpile:es5 && npm run collapse",
"transpile:es2020": "tsc -p tsconfig.json",
"transpile:es5": "tsc -p tsconfig.es5.json"
},
"keywords": [
"filemaker",
"webdirect",
"web_viewer"
],
"author": "Stephan Casas <stephancasas@icloud.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/stephancasas/onfmready.js"
},
"bugs": {
"email": "stephancasas@icloud.com",
"url": "https://github.com/stephancasas/onfmready.js"
},
"homepage": "https://github.com/stephancasas/onfmready.js#readme",
"license": "MIT",
"devDependencies": {
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.2"
}
}