mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
28 lines
796 B
JSON
28 lines
796 B
JSON
{
|
|
"name": "simple-scaffold",
|
|
"version": "0.1.5",
|
|
"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": "yarn build && node dist/test.js"
|
|
},
|
|
"dependencies": {
|
|
"@types/glob": "^5.0.34",
|
|
"@types/node": "^8.0.50",
|
|
"glob": "^7.1.2",
|
|
"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"
|
|
}
|
|
}
|