forked from GoogleChrome/dialog-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 920 Bytes
/
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
{
"name": "dialog-polyfill",
"version": "0.5.0",
"description": "Polyfill for the dialog element",
"main": "dist/dialog-polyfill.js",
"module": "dist/dialog-polyfill.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/GoogleChrome/dialog-polyfill.git"
},
"author": "The Chromium Authors",
"license": "BSD",
"homepage": "https://github.com/GoogleChrome/dialog-polyfill",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.3.0"
},
"scripts": {
"build": "npm-run-all -p build:*",
"build:css": "cp dialog-polyfill.css dist/dialog-polyfill.css",
"build:esm": "rollup index.js --file dist/dialog-polyfill.esm.js --format esm",
"build:umd": "rollup index.js --file dist/dialog-polyfill.js --format umd --name dialogPolyfill",
"prepublishOnly": "npm run build",
"test": "open test.html"
}
}