react-compute
Version:
Fast and easy way to generate react components.
48 lines • 1.31 kB
JSON
{
"name": "react-compute",
"version": "1.0.0",
"description": "Fast and easy way to generate react components.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rohanprasadofficial/react-compute.git"
},
"keywords": [
"react",
"build-tools",
"cli",
"react-component-cli",
"react-compute",
"generate-react-component"
],
"author": "Rohan Prasad",
"license": "MIT",
"bugs": {
"url": "https://github.com/rohanprasadofficial/react-compute/issues"
},
"homepage": "https://github.com/rohanprasadofficial/react-compute#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
},
"files": [
"lib/**/*"
]
}