mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-18 01:29:09 +00:00
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "simple-scaffold",
|
|
"version": "1.1.2",
|
|
"description": "A simple command to generate any file structure, from single components to entire app boilerplates.",
|
|
"homepage": "https://casraf.blog/simple-scaffold",
|
|
"repository": "https://github.com/chenasraf/simple-scaffold.git",
|
|
"author": "Chen Asraf <inbox@casraf.com>",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"bin": "cmd.js",
|
|
"keywords": [
|
|
"javascript",
|
|
"cli",
|
|
"template",
|
|
"files",
|
|
"typescript",
|
|
"generator",
|
|
"scaffold",
|
|
"file",
|
|
"scaffolding"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist/",
|
|
"build": "yarn clean && tsc && chmod -R +x ./dist && cp ./package.json ./README.md ./dist/",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/scaffold.js",
|
|
"test": "jest --verbose",
|
|
"cmd": "node --trace-warnings dist/cmd.js",
|
|
"build-test": "yarn build && yarn test",
|
|
"build-cmd": "yarn build && yarn cmd",
|
|
"build-docs": "yarn build-docs-theme && yarn install --frozen-lockfile && typedoc",
|
|
"build-docs-theme": "cd doc-theme && yarn install && yarn build && cd ..",
|
|
"watch-docs": "yarn typedoc --watch",
|
|
"audit-fix": "npm_config_yes=true npx yarn-audit-fix --flow=convert"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"date-fns": "^2.28.0",
|
|
"glob": "^7.1.3",
|
|
"handlebars": "^4.7.7",
|
|
"lodash": "^4.17.21",
|
|
"massarg": "^1.0.5",
|
|
"util.promisify": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^7.1.1",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/lodash": "^4.14.171",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "^14.14.22",
|
|
"doc-theme": "file:./doc-theme",
|
|
"jest": "^27.0.6",
|
|
"mock-fs": "^5.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-node": "^10.1.0",
|
|
"typedoc": "^0.22.15",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|