forked from calebdwilliams/element-internals-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "element-internals-polyfill",
"version": "1.3.10",
"description": "A polyfill for the element internals specification",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "web-test-runner test/*.test.* --node-resolve --playwright --browsers chromium firefox webkit && npm run test:jsdom",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:jsdom": "node ./jsdom-tests/jsdom.test.js",
"start": "rollup -c --watch --environment BUILD:dev",
"build": "rollup -c --environment BUILD:production",
"prerelease": "npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master; npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calebdwilliams/element-internals-polyfill.git"
},
"keywords": [
"elementinternals",
"internals",
"element",
"internals",
"formassociated",
"customelements",
"web",
"components",
"forms",
"polyfill"
],
"author": "Caleb D. Williams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/calebdwilliams/element-internals-polyfill/issues"
},
"homepage": "https://github.com/calebdwilliams/element-internals-polyfill#readme",
"devDependencies": {
"@lit-labs/testing": "^0.2.1",
"@open-wc/testing": "^3.1.7",
"@open-wc/testing-helpers": "^1.7.1",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^6.0.0",
"@types/mocha": "^10.0.1",
"@web/dev-server-esbuild": "^0.3.3",
"@web/test-runner": "^0.15.0",
"@web/test-runner-playwright": "^0.9.0",
"deepmerge": "^4.2.2",
"jsdom": "^21.1.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.3.0",
"karma-ie-launcher": "^1.0.0",
"karma-rollup-preprocessor": "^7.0.5",
"karma-safari-launcher": "^1.0.0",
"karma-safarinative-launcher": "^1.1.0",
"lit": "^2.7.2",
"lit-html": "^1.2.1",
"rollup": "^2.46.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.2.0",
"rollup-plugin-serve": "^1.0.1",
"sinon": "^9.2.4",
"standard-version": "^9.0.0",
"tslib": "^2.1.0",
"typescript": "^4.5.2"
}
}