You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
{
|
|
"name": "micro-build-server",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "forever -c node app.js"
|
|
},
|
|
"dependencies": {
|
|
"archiver": "^1.3.0",
|
|
"async": "~2.1.4",
|
|
"body-parser": "^1.15.2",
|
|
"cssnano": "^3.9.1",
|
|
"errorhandler": "^1.5.0",
|
|
"eslint": "^3.12.2",
|
|
"express": "4.14.0",
|
|
"fs-extra": "^1.0.0",
|
|
"github": "~7.1.0",
|
|
"glob": "~7.1.1",
|
|
"graceful-fs": "^4.1.11",
|
|
"jade": "*",
|
|
"method-override": "^2.3.7",
|
|
"morgan": "^1.7.0",
|
|
"mustache": "~2.3.0",
|
|
"nodegit": "~0.16.0",
|
|
"nodemailer": "~2.7.0",
|
|
"recursive-tree-copy": "0.0.1",
|
|
"serve-favicon": "^2.3.2",
|
|
"serve-static": "^1.11.1",
|
|
"uglify-js": "^2.7.5",
|
|
"underscore": "^1.8.3"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6
|
|
},
|
|
"extends": "eslint:all",
|
|
"rules": {
|
|
"quotes": ["warn", "double"],
|
|
"require-jsdoc": "off",
|
|
"func-names": ["warn", "never"],
|
|
"max-len": ["warn", { "code": 140 }],
|
|
"operator-linebreak": ["warn", "before"],
|
|
"padded-blocks": ["warn", "never"],
|
|
"dot-notation": ["warn", { "allowPattern": "^[a-z]+(_[a-z]+)+$" }],
|
|
"linebreak-style": ["warn", "windows"],
|
|
"no-console": "off",
|
|
"dot-location": ["warn", "property"],
|
|
"object-curly-spacing": ["warn", "always"],
|
|
"one-var": ["warn", { "initialized": "never" }],
|
|
"no-extra-parens": ["warn", "all", { "nestedBinaryExpressions": false }]
|
|
}
|
|
}
|
|
}
|
|
|