Alan Agius 772c5b8f64 refactor: update to tslib 2.0 and move to direct dependencies (#37198)
Tslib version is bound to the TypeScript version used to compile the library. Thus, we shouldn't list `tslib` as a  `peerDependencies`. This is because, a user can install libraries which have been compiled with older versions of TypeScript and thus require multiple `tslib` versions to be installed.

Reference: TOOL-1374 and TOOL-1375

Closes: #37188

PR Close #37198
2020-05-19 14:57:09 -07:00

49 lines
1.2 KiB
JSON

{
"name": "zone.js",
"version": "0.10.3",
"description": "Zones for JavaScript",
"main": "dist/zone-node.js",
"browser": "dist/zone.js",
"unpkg": "dist/zone.js",
"typings": "dist/zone.js.d.ts",
"files": [
"lib",
"dist"
],
"dependencies": {
"tslib": "^2.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"@types/node": "^10.9.4",
"domino": "2.1.2",
"jest": "^25.1.0",
"mocha": "^3.1.2",
"mock-require": "3.0.3",
"promises-aplus-tests": "^2.1.2",
"typescript": "~3.4.2"
},
"scripts": {
"electrontest": "cd test/extra && node electron.js",
"jesttest": "jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js",
"promisetest": "tsc -p . && node ./test/promise/promise-test.js",
"promisefinallytest": "tsc -p . && mocha ./test/promise/promise.finally.spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/angular/angular.git",
"directory": "packages/zone.js"
},
"publishConfig":{
"registry":"https://wombat-dressing-room.appspot.com"
},
"author": "Brian Ford",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular/issues"
}
}