mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-18 01:29:09 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "simple-scaffold",
|
|
"version": "0.4.2",
|
|
"description": "Create files based on templates",
|
|
"repository": "https://github.com/chenasraf/simple-scaffold.git",
|
|
"author": "Chen Asraf <inbox@casraf.com>",
|
|
"license": "MIT",
|
|
"main": "dist/scaffold.js",
|
|
"bin": "dist/cmd.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"build": "NODE_ENV=${NODE_ENV:-production} webpack -p && chmod -R +x ./dist",
|
|
"dev": "webpack --watch",
|
|
"start": "node dist/scaffold.js",
|
|
"test": "jest",
|
|
"cmd": "dist/cmd.js",
|
|
"build-test": "yarn build && yarn test",
|
|
"build-cmd": "yarn build && yarn cmd"
|
|
},
|
|
"dependencies": {
|
|
"command-line-args": "^5.0.2",
|
|
"command-line-usage": "^5.0.5",
|
|
"glob": "^7.1.2",
|
|
"handlebars": "^4.0.11",
|
|
"ts-loader": "^3.1.1",
|
|
"typescript": "^2.6.1",
|
|
"webpack": "^3.8.1",
|
|
"webpack-dev-server": "^2.9.4",
|
|
"webpack-node-externals": "^1.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/command-line-args": "^5.0.0",
|
|
"@types/command-line-usage": "^5.0.1",
|
|
"@types/glob": "^5.0.34",
|
|
"@types/handlebars": "^4.0.36",
|
|
"@types/node": "^8.0.50",
|
|
"jest": "^22.0.4"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|
|
}
|