mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-18 01:29:09 +00:00
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "simple-scaffold",
|
|
"version": "1.0.0-alpha.1",
|
|
"description": "Create files based on templates",
|
|
"repository": "https://github.com/chenasraf/simple-scaffold.git",
|
|
"author": "Chen Asraf <inbox@casraf.com>",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"bin": "cmd.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"clean": "rm -rf dist/",
|
|
"build": "yarn clean && tsc && chmod -R +x ./dist && cp ./package.json ./dist/package.json",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"args": "^5.0.1",
|
|
"glob": "^7.1.3",
|
|
"handlebars": "^4.7.7",
|
|
"lodash": "^4.17.21",
|
|
"massarg": "^0.1.2",
|
|
"util.promisify": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/args": "^3.0.1",
|
|
"@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",
|
|
"jest": "^27.0.6",
|
|
"mock-fs": "^5.0.0",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-node": "^10.1.0",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|