Files
Node.js-14-Cookbook/Chapter05/reverse-sentence/package.json
T
2020-05-20 01:26:41 +01:00

25 lines
664 B
JSON

{
"name": "@bethany.griggs/reverse-sentence",
"version": "0.1.0",
"description": "Reverses a sentence.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/prettier/bin-prettier.js . --write",
"prepublish": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BethGriggs/reverse-sentence.git"
},
"bugs": {
"url": "https://github.com/BethGriggs/reverse-sentence/issues"
},
"homepage": "https://github.com/BethGriggs/reverse-sentence#readme",
"devDependencies": {
"prettier": "2.0.5"
}
}