forked from ryanelian/ts-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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.5.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]",
"url": "https://elian.plus"
},
"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 && rollup -c rollup.config.min.js"
},
"dependencies": {
"core-js": "^3.2.1"
},
"devDependencies": {
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.5.3"
}
}