blob: 54c6db161d0c5fe3172beddf928621fdb9cc75f8 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001{
Renovate botf591dcf2023-12-30 14:13:54 +00002 "name": "dialog-polyfill",
Renovate bot5c5564b2024-02-09 00:15:00 +00003 "version": "0.5.6",
Copybara botbe50d492023-11-30 00:16:42 +01004 "description": "Polyfill for the dialog element",
Renovate botf591dcf2023-12-30 14:13:54 +00005 "main": "dist/dialog-polyfill.js",
6 "module": "dist/dialog-polyfill.esm.js",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/GoogleChrome/dialog-polyfill.git"
10 },
11 "author": "The Chromium Authors",
12 "license": "BSD",
13 "homepage": "https://github.com/GoogleChrome/dialog-polyfill",
Copybara botbe50d492023-11-30 00:16:42 +010014 "devDependencies": {
15 "chai": "^4.2.0",
16 "mocha": "^6.0.2",
17 "npm-run-all": "^4.1.5",
18 "rollup": "^1.3.0"
19 },
Copybara botbe50d492023-11-30 00:16:42 +010020 "scripts": {
21 "build": "npm-run-all -p build:*",
22 "build:css": "cp dialog-polyfill.css dist/dialog-polyfill.css",
23 "build:esm": "rollup index.js --file dist/dialog-polyfill.esm.js --format esm",
24 "build:umd": "rollup index.js --file dist/dialog-polyfill.js --format umd --name dialogPolyfill",
25 "prepublishOnly": "npm run build",
26 "test": "open test.html"
Renovate botf591dcf2023-12-30 14:13:54 +000027 }
Copybara botbe50d492023-11-30 00:16:42 +010028}