forked from msn0/mdn-polyfills
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.47 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
{
"name": "mdn-polyfills",
"version": "5.14.0",
"description": "MDN polyfills",
"scripts": {
"lint": "eslint src/",
"prepare": "npm run lint && node rollup.build.js",
"test": "ava --tap | tap-nyan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msn0/mdn-polyfills.git"
},
"keywords": [
"assign",
"create",
"of",
"from",
"find",
"forEach",
"filter",
"findIndex",
"includes",
"some",
"repeat",
"startsWith",
"endsWith",
"bind",
"closest",
"toggleAttribute",
"matches",
"isNaN",
"toBlob",
"Object.assign",
"Object.create",
"Object.entries",
"Object.values",
"Array.of",
"Array.from",
"Array.prototype.find",
"Array.prototype.forEach",
"Array.prototype.filter",
"Array.prototype.findIndex",
"Array.prototype.includes",
"Array.prototype.some",
"String.prototype.includes",
"String.prototype.repeat",
"String.prototype.startsWith",
"String.prototype.endsWith",
"String.prototype.padStart",
"String.prototype.padEnd",
"String.prototype.trim",
"Node.prototype.append",
"Node.prototype.prepend",
"Node.prototype.before",
"Node.prototype.after",
"Node.prototype.remove",
"Node.prototype.replaceWith",
"Node.prototype.children",
"NodeList.prototype.forEach",
"Function.prototype.bind",
"Element.prototype.closest",
"Element.prototype.toggleAttribute",
"Element.prototype.matches",
"Element.prototype.classList",
"HTMLCanvasElement.prototype.toBlob",
"MouseEvent",
"CustomEvent",
"Number.isNaN",
"polyfills",
"polyfill",
"mdn"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/msn0/mdn-polyfills/issues"
},
"homepage": "https://github.com/msn0/mdn-polyfills#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"browser-env": "^3.2.5",
"eslint-config-helmut": "^3.0.0",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^4.0.0",
"tap-nyan": "^1.1.0"
},
"ava": {
"files": [
"src/**/spec.js"
],
"source": [
"src/**/*.js"
],
"concurrency": 5,
"failFast": true,
"powerAssert": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"dependencies": {}
}