Summary: TypeScript cli tool basics. Reviewed By: jknoxville, nikoant Differential Revision: D19856513 fbshipit-source-id: da148d1435c09221f74dc94285b655bed53d0494
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "flipper-pkg",
|
|
"version": "0.0.0",
|
|
"description": "Utility for building and publishing Flipper plugins",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.21",
|
|
"@typescript-eslint/eslint-plugin": "^2.8.0",
|
|
"eslint": "^6.6.0",
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
"eslint-plugin-flowtype": "^4.5.2",
|
|
"eslint-plugin-header": "^3.0.0",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"eslint-plugin-react": "^7.16.0",
|
|
"jest": "^24.9.0",
|
|
"prettier": "^1.19.1",
|
|
"ts-jest": "^24.1.0",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^3.7.2"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepare": "yarn run build",
|
|
"prepublishOnly": "yarn test && yarn run lint",
|
|
"preversion": "yarn run lint",
|
|
"test": "jest --config jestconfig.json --passWithNoTests",
|
|
"lint": "eslint -c ../../sonar/.eslintrc.js src/**/* --ext .js,.ts && tsc --noemit",
|
|
"fix": "eslint -c ../../sonar/.eslintrc.js src/**/* --fix --ext .js,.ts",
|
|
"run": "yarn run build && node lib/index.js"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc",
|
|
"dependencies": {
|
|
"@types/node": "^12.12.12"
|
|
}
|
|
}
|