Skip to content

Instantly share code, notes, and snippets.

@kevinchisholm
Last active January 18, 2018 23:59
Show Gist options
  • Save kevinchisholm/2f8b8abec92ad050528e356108039c7f to your computer and use it in GitHub Desktop.
Save kevinchisholm/2f8b8abec92ad050528e356108039c7f to your computer and use it in GitHub Desktop.
{
"name" : "easy-http-post-testing-with-the-request-module",
"version" : "0.0.1",
"description" : "Easy HTTP POST testing with the request module.",
"author" : "Kevin Chisholm",
"dependencies" : {
"request" : "latest",
"body-parser": "^1.15.2",
"express": "4.14.0"
}
}
-build
--css
--js
-src
--coffee
---global.coffee
--js
---main.js
--sass
---main.scss
{
"name" : "easy-http-post-testing-with-the-request-module",
"version" : "0.0.1",
"description" : "Easy HTTP POST testing with the request module.",
"author" : "Kevin Chisholm",
"dependencies" : {
"request" : "latest",
"body-parser": "^1.15.2",
"express": "4.14.0"
}
}
{
"name": "npm-scripts-example",
"version": "1.0.0",
"devDependencies": {
"delete": "0.3.2 ",
"gulp": "3.9.1",
"gulp-coffee": "2.3.2",
"gulp-sass": "2.3.2",
"gulp-uglify": "2.0.0"
},
"scripts" : {
"build:sass": "gulp sass",
"build:coffee": "gulp coffee",
"build:js": "gulp uglify",
"build": "npm run build:sass && npm run build:js && npm run build:coffee",
"clean": "node ./clean.js",
"serve" : "node ./index.js",
"start": "npm run build && npm run serve"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment