source: imaps-frontend/node_modules/tslib/package.json@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "name": "tslib",
3 "author": "Microsoft Corp.",
4 "homepage": "https://www.typescriptlang.org/",
5 "version": "2.6.3",
6 "license": "0BSD",
7 "description": "Runtime library for TypeScript helper functions",
8 "keywords": [
9 "TypeScript",
10 "Microsoft",
11 "compiler",
12 "language",
13 "javascript",
14 "tslib",
15 "runtime"
16 ],
17 "bugs": {
18 "url": "https://github.com/Microsoft/TypeScript/issues"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/Microsoft/tslib.git"
23 },
24 "main": "tslib.js",
25 "module": "tslib.es6.js",
26 "jsnext:main": "tslib.es6.js",
27 "typings": "tslib.d.ts",
28 "sideEffects": false,
29 "exports": {
30 ".": {
31 "module": {
32 "types": "./modules/index.d.ts",
33 "default": "./tslib.es6.mjs"
34 },
35 "import": {
36 "node": "./modules/index.js",
37 "default": {
38 "types": "./modules/index.d.ts",
39 "default": "./tslib.es6.mjs"
40 }
41 },
42 "default": "./tslib.js"
43 },
44 "./*": "./*",
45 "./": "./"
46 }
47}
Note: See TracBrowser for help on using the repository browser.