redhot
Version:
TypeScript Monorepo Management
38 lines (37 loc) • 749 B
JSON
{
"name": "{{ packageName }}",
"version": "0.0.0",
"description": "{{ description }}",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"typings": "lib/index.js",
"license": "MIT",
"keywords": [
],
"author": "{{ author }}",
"repository": {
"type": "git",
"url": "{{ gitUrl }}"
},
"bugs": {
"url": "{{ bugsUrl }}"
},
"homepage": "{{ homepage }}",
"config": {
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "{{ lintCmd }}",
"test:unit": "{{ testUnitCmd }}",
"test": "npm run lint && npm run test:unit",
"build": "echo 'build should be run from redhot root directory'"
},
"dependencies": {
},
"peerDependencies": {
},
"devDependencies": {
}
}