-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "ay-dialog",
"author": "Ayogo Health Inc. <[email protected]>",
"copyright": "Copyright 2020 Ayogo Health Inc.",
"license": "MIT",
"homepage": "https://ayogo.com",
"version": "2.0.0-beta.1",
"description": "An HTML5 spec-compliant <dialog> polyfill.",
"repository": {
"type": "git",
"url": "git+https://github.com/AyogoHealth/ay-dialog.git"
},
"bugs": {
"url": "https://github.com/AyogoHealth/ay-dialog/issues"
},
"keywords": [
"client-side",
"dialog",
"browser"
],
"files": [
"index.js",
"index.js.map",
"component.js",
"component.js.map",
"polyfill.js",
"polyfill.js.map"
],
"contributors": [
"Darryl Pogue <[email protected]>",
"Jeffrey Chang <[email protected]>",
"Onataze Messiri <[email protected]>",
"Sam Evanuk <[email protected]>"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"copyfiles": "^2.4.0",
"eslint": "^8.30.0",
"eslint-plugin-header": "^3.0.0",
"rollup": "^3.7.5",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.0.3",
"wpt-runner": "github:dpogue/wpt-runner#sub2"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .ts,.js .",
"test": "npm run lint && rollup -c --environment OUTPUT_PATH:tests/dist && echo \"\nTODO: Run the WPT tests using WebDriver\"",
"test-server": "rollup -c --environment OUTPUT_PATH:tests/dist && wpt-server tests --root-url=tests --port=1337",
"preversion": "npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tag"
}
}