mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "simple-scaffold",
|
|
"version": "1.1.3",
|
|
"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",
|
|
"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.29.3",
|
|
"glob": "^9.2.1",
|
|
"handlebars": "^4.7.7",
|
|
"lodash": "^4.17.21",
|
|
"massarg": "^1.0.7-pre.1",
|
|
"util.promisify": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^8.1.0",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/lodash": "^4.14.171",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "^18.15.1",
|
|
"doc-theme": "file:./doc-theme",
|
|
"jest": "^29.5.0",
|
|
"mock-fs": "^5.2.0",
|
|
"rimraf": "^4.4.0",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.23.26",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|