forked from jhildenbiddle/css-vars-ponyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.88 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "css-vars-ponyfill",
"version": "1.15.3",
"description": "A ponyfill that provides client-side support for CSS custom properties (aka \"CSS variables\") in legacy and modern browsers",
"author": "John Hildenbiddle <http://hildenbiddle.com>",
"license": "MIT",
"homepage": "https://github.com/jhildenbiddle/css-vars-ponyfill",
"repository": {
"type": "git",
"url": "git+https://[email protected]/jhildenbiddle/css-vars-ponyfill.git"
},
"bugs": {
"url": "https://github.com/jhildenbiddle/css-vars-ponyfill/issues"
},
"keywords": [
"client",
"client side",
"component",
"css",
"cssom",
"csstext",
"custom properties",
"custom property",
"custom",
"dom",
"es6",
"ie",
"ie10",
"ie11",
"ie9",
"internet explorer",
"javascript",
"js",
"legacy",
"module",
"polyfill",
"ponyfill",
"properties",
"runtime",
"shadow",
"shadow dom",
"shadow root",
"shadowroot",
"variables",
"vars",
"web",
"web component"
],
"browserslist": [
"ie >= 9"
],
"main": "dist/css-vars-ponyfill.js",
"module": "dist/css-vars-ponyfill.esm.js",
"unpkg": "dist/css-vars-ponyfill.min.js",
"scripts": {
"prepare": "rimraf dist/*.js* && npm run build",
"build": "rollup -c",
"dev": "npm start | npm run test-watch",
"start": "rimraf coverage/* && npm run build -- --watch",
"test": "rimraf coverage/* && karma start",
"test-watch": "npm test -- --auto-watch --no-single-run",
"test-remote": "npm test -- --remote",
"version": "npm run build && npm test && git add -A dist"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@webcomponents/webcomponentsjs": "^2.2.1",
"axios": "^0.18.0",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"balanced-match": "^1.0.0",
"chai": "^4.2.0",
"chai-colors": "^1.0.1",
"create-elms": "^1.0.7",
"eslint": "^5.10.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-mocha": "^5.2.0",
"get-css-data": "^1.6.1",
"karma": "^3.1.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-eslint": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"lodash.merge": "^4.6.1",
"mocha": "^4.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^3.0.0",
"webpack": "^4.27.1"
},
"dependencies": {}
}