-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.87 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
{
"name": "@tef-novum/webview-bridge",
"version": "3.48.2",
"description": "JavaScript library to access to native functionality. Requires a webview with a postMessage bridge.",
"main": "./dist/webview-bridge-cjs.js",
"module": "./dist/webview-bridge.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c && uglifyjs --compress --mangle -o dist/webview-bridge-umd.min.js dist/webview-bridge-umd.js && uglifyjs --compress --mangle -o dist/webview-bridge-iife.min.js dist/webview-bridge-iife.js",
"test": "jest --coverage",
"prettier-check": "prettier --check .",
"lint": "eslint --report-unused-disable-directives .",
"ts-check": "tsc --project tsconfig.json --noEmit",
"fix-code": "yarn lint -- --fix && yarn prettier -- --write",
"ci": "yarn prettier-check && yarn lint && yarn ts-check && yarn test --ci && yarn build",
"prepublishOnly": "yarn ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tef-dig/webview-bridge.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tef-dig/webview-bridge/issues"
},
"homepage": "https://github.com/tef-dig/webview-bridge#readme",
"dependencies": {},
"devDependencies": {
"@types/gtag.js": "^0.0.10",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.61.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3",
"uglify-es": "^3.3.9"
}
}