UNPKG

carpent

Version:

Bootstrap and configure any project using its template

71 lines (70 loc) 1.63 kB
{ "name": "carpent", "version": "2.0.1", "description": "Bootstrap and configure any project using its template", "main": "dist/index.js", "bin": "dist/cli.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsc", "test": "jest", "test-report": "jest --coverage --coverageReporters=text-lcov | coveralls", "test-without-reporting": "jest --coverage", "semantic-release": "semantic-release" }, "repository": { "type": "git", "url": "https://github.com/AnandChowdhary/carpent.git" }, "keywords": [ "node.js", "typescript", "javascript", "library" ], "author": "Anand Chowdhary <mail@anandchowdhary.com>", "engines": { "node": ">=10.0.0" }, "license": "MIT", "bugs": { "url": "https://github.com/AnandChowdhary/carpent/issues" }, "homepage": "https://anandchowdhary.github.io/carpent/", "dependencies": { "@sindresorhus/slugify": "^1.0.0", "fs-extra": "^9.0.1", "got": "^11.3.0", "inquirer": "^7.1.0", "ora": "^4.0.4" }, "devDependencies": { "@semantic-release/git": "^9.0.0", "@types/fs-extra": "^9.0.1", "@types/inquirer": "^6.5.0", "@types/jest": "^26.0.0", "@types/node": "^14.0.13", "coveralls": "^3.1.0", "jest": "^26.0.1", "semantic-release": "^17.0.8", "semantic-release-gitmoji": "^1.3.4", "ts-jest": "^26.1.0", "typescript": "^3.9.5" }, "jest": { "roots": [ "<rootDir>" ], "transform": { "^.+\\.tsx?$": "ts-jest" }, "moduleFileExtensions": [ "js", "ts", "json" ] } }