advanced
Version:
A simple MVC framework based on Express
40 lines (39 loc) • 1.26 kB
JSON
{
"name": "advanced",
"version": "0.4.8",
"description": "A simple MVC framework based on Express",
"main": "./lib/index.js",
"bin": "./cli/advanced.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Javey/advanced"
},
"dependencies": {
"bluebird": "^2.9.25",
"body-parser": "^1.18.3",
"commander": "^2.8.1",
"cookie-parser": "^1.3.4",
"debug": "^3.1.0",
"express": "^4.16.3",
"fs-extra": "^0.26.7",
"lodash": "^4.17.10",
"methods": "^1.1.1",
"morgan": "^1.9.0",
"request": "^2.87.0"
},
"devDependencies": {
"coffee-script": "^1.9.3",
"mocha": "^5.2.0",
"should": "^13.2.3",
"supertest": "^3.1.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --compilers coffee:coffee-script/register test/*.coffee",
"test-server": "node test/app2/server.js",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm version patch && git push origin master --tags && npm publish",
"release-minor": "git checkout master && npm version minor && git push origin master --tags && npm publish",
"release-major": "git checkout master && npm version major && git push origin master --tags && npm publish"
}
}