react-commento
Version:
React component for commento comments
43 lines (42 loc) • 833 B
JSON
{
"name": "react-commento",
"version": "1.0.0",
"description": "React component for commento comments",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc -p .",
"release": "np",
"prepare": "npm run build",
"test": "echo 'test'"
},
"keywords": [
"comments",
"commento",
"react"
],
"author": "tgandrews",
"repository": "tgandrews/react-commento",
"license": "MIT",
"dependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.34",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"np": "^6.2.3",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write"
]
}
}