-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "@corpuscule/custom-builtin-elements",
"version": "0.3.0",
"description": "A full-featured polyfill for customized built-in elements",
"main": "lib/customBuiltInElements.js",
"module": "lib/customBuiltInElements.js",
"files": [
"lib/customBuiltInElements.js",
"lib/customElementsBase.js"
],
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint src/**/*.js",
"test": "npm run build && karma start",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corpusculejs/custom-builtin-elements.git"
},
"keywords": [
"polyfill",
"custom",
"built-in",
"element",
"web",
"components"
],
"author": "Vlad Rindevich <[email protected]> (https://github.com/Lodin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/corpusculejs/custom-builtin-elements/issues"
},
"homepage": "https://github.com/corpusculejs/custom-builtin-elements#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-instanceof": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@open-wc/testing-helpers": "^1.2.1",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-async-to-promises": "^0.8.14",
"core-js-pure": "^3.3.1",
"eslint": "^6.5.1",
"eslint-config-poetez": "^0.1.4",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jasmine-core": "^3.5.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.2",
"karma-safarinative-launcher": "^1.1.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}