-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "ts-polyfill",
"version": "3.9.3",
"description": "Runtime polyfills for TypeScript libs, powered by core-js!",
"keywords": [
"typescript",
"javascript",
"polyfill",
"standard-library",
"es6",
"es2015",
"promise"
],
"homepage": "https://github.com/ryanelian/ts-polyfill#readme",
"bugs": {
"url": "https://github.com/ryanelian/ts-polyfill/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": {
"name": "Ryan Elian",
"email": "[email protected]"
},
"main": "dist/ts-polyfill.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ryanelian/ts-polyfill.git"
},
"scripts": {
"build": "tsc && rollup -c"
},
"dependencies": {
"core-js": "^3.6.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"rollup": "^2.10.9",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-terser": "^6.1.0",
"typescript": "3.9.3"
}
}