forked from jhildenbiddle/css-vars-ponyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.22 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
106
107
108
109
110
111
112
113
114
{
"name": "css-vars-ponyfill",
"version": "2.0.2",
"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://jhildenbiddle.github.io/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",
"component",
"css",
"custom properties",
"custom property",
"custom",
"dom",
"es6",
"ie",
"ie9",
"ie10",
"ie11",
"internet explorer",
"javascript",
"js",
"legacy",
"module",
"mutation",
"observer",
"polyfill",
"ponyfill",
"properties",
"property",
"runtime",
"shadow",
"variables",
"vars",
"watch",
"web"
],
"browserslist": [
"ie >= 9"
],
"files": [
"dist"
],
"main": "dist/css-vars-ponyfill.js",
"module": "dist/css-vars-ponyfill.esm.js",
"unpkg": "dist/css-vars-ponyfill.min.js",
"types": "dist/css-vars-ponyfill.d.ts",
"scripts": {
"prepare": "rimraf dist/*.js* && npm run build",
"build": "rollup -c",
"prebuild": "cpy 'src/index.d.ts' 'dist' --rename=css-vars-ponyfill.d.ts",
"dev": "npm start | npm run test-watch",
"serve": "node server.js",
"start": "rimraf coverage/* && npm run serve | npm run build -- --watch",
"test": "karma start",
"test-watch": "karma start --auto-watch --no-single-run",
"test-remote": "karma start --remote",
"version": "npm run build && npm test"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.3",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"balanced-match": "^1.0.0",
"browser-sync": "^2.26.5",
"chai": "^4.2.0",
"chai-colors": "^1.0.1",
"compression": "^1.7.4",
"cpy-cli": "^2.0.0",
"create-elms": "^1.0.9",
"eslint": "^5.16.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-mocha": "^5.3.0",
"get-css-data": "^1.6.3",
"jsdom": "^14.1.0",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-eslint": "^2.2.0",
"karma-file-fixtures-preprocessor": "^2.0.1",
"karma-jsdom-launcher": "^7.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.6",
"lodash.merge": "^4.6.1",
"mocha": "4.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4",
"webpack": "^4.30.0"
},
"dependencies": {}
}