Files
flipper/desktop/plugin-lib/package.json
Michel Weststrate 8b2d8498e6 Upgrade to TypeScript 3.9
Summary:
Upgrading to TypeScript 3.9 so that we can use `// ts-expect-error`, that allows us to basically write unit tests for typings.

Fixed the typescript path in `settings.json`, because otherwise VSCode kept picking the built-in version (3.8.3 atm) of ts when opening the `sonar` folder as workspace.

Reviewed By: passy

Differential Revision: D22255818

fbshipit-source-id: ae54aedb237445f32f1797b4290656dbfb0e528f
2020-07-01 09:12:36 -07:00

47 lines
1.1 KiB
JSON

{
"name": "flipper-plugin-lib",
"version": "0.49.0",
"description": "Library containing common Flipper plugin installation utilities",
"repository": "facebook/flipper",
"main": "lib/index.js",
"flipperBundlerEntry": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"fs-extra": "^8.1.0",
"live-plugin-manager": "^0.14.1",
"semver": "^7.3.2",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^26",
"@types/node": "^13.7.5",
"flipper-test-utils": "0.49.0",
"globby": "^10",
"jest": "^26",
"mock-fs": "^4.12.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^8",
"typescript": "^3.9.5"
},
"scripts": {
"reset": "rimraf lib *.tsbuildinfo",
"build": "tsc -b",
"prepack": "yarn reset && yarn build"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/facebook/flipper",
"keywords": [
"Flipper"
],
"author": "Facebook, Inc"
}