This commit is contained in:
Chen Asraf
2018-01-15 02:19:23 +02:00
parent 4f29a612a3
commit 0be29dd89e

View File

@@ -1,6 +1,6 @@
{
"name": "simple-scaffold",
"version": "0.2.0",
"version": "0.3.0",
"description": "Create files based on templates",
"repository": "https://github.com/chenasraf/simple-scaffold.git",
"author": "Chen Asraf <inbox@casraf.com>",
@@ -12,7 +12,7 @@
"build": "NODE_ENV=${NODE_ENV:-production} webpack -p && chmod -R +x ./dist",
"dev": "webpack --watch",
"start": "node dist/scaffold.js",
"test": "node dist/test.js",
"test": "jest",
"cmd": "dist/cmd.js",
"build-test": "yarn build && yarn test",
"build-cmd": "yarn build && yarn cmd"
@@ -28,5 +28,14 @@
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"jest": "^22.0.4"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
}
}