mirror of
https://github.com/bendtherules/react-to-markdown.git
synced 2026-08-18 13:53:11 +00:00
Create project scaffolding using yo node-typescript
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"name": "react-to-markdown",
|
||||
"version": "0.0.1",
|
||||
"description": "react-to-markdown",
|
||||
"license": "MIT",
|
||||
"repository": "",
|
||||
"author": {
|
||||
"name": "",
|
||||
"email": "",
|
||||
"url": ""
|
||||
},
|
||||
"keywords": [
|
||||
""
|
||||
],
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"main": "lib/index",
|
||||
"types": "lib/index",
|
||||
"scripts": {
|
||||
"clean": "rimraf lib && rimraf coverage",
|
||||
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
|
||||
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
|
||||
"prepublishOnly": "npm run build",
|
||||
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
|
||||
"build": "tsc --pretty",
|
||||
"test": "jest",
|
||||
"coverage": "jest --coverage",
|
||||
"watch": "npm run build -- --watch",
|
||||
"watch:test": "jest --watch"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^23.3.3",
|
||||
"@types/node": "^10.11.4",
|
||||
"coveralls": "^3.0.2",
|
||||
"jest": "^23.6.0",
|
||||
"prettier": "^1.14.3",
|
||||
"rimraf": "^2.6.2",
|
||||
"ts-jest": "^23.10.3",
|
||||
"ts-node": "^7.0.1",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint-config-prettier": "^1.15.0",
|
||||
"typescript": "^3.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10.0.0"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "ts-jest"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user