b8802f8707
* Add inquirer to get some prompts * Create some questions Refs #16 * Add tomljs to read config for choices * Kebab-case the input file name * Fix listing errors * Lint all relevant js files * Add new incident npm script * Set as default so out of the box this just works * refactor out args that are used everywhere * Add inquirer validation * Handle inquirer answers * Create toml from answers * Fix linting * Treat title and file name separately This allows for Hugo new to work and enhances the gulp task but breaks TranslationBaseName e.g.: `post` for `post.es.md` (if `Multilingual` is enabled.) which I’m not sure is enabled by default. * add comment to replace * update new issue creation * fix spelling
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "netlify-statusKit",
|
|
"version": "1.0.0",
|
|
"description": "StatusKit is a template to build Status pages for your business",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"hugo": "gulp hugo",
|
|
"webpack": "gulp webpack",
|
|
"build": "gulp build",
|
|
"build-preview": "gulp build-preview",
|
|
"start": "gulp server",
|
|
"lint": "eslint src gulpfile.babel.js webpack.conf.js",
|
|
"new-incident": "gulp new-incident"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"autoprefixer": "^6.3.7",
|
|
"babel-eslint": "^6.1.2",
|
|
"babel-loader": "^6.2.4",
|
|
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
|
|
"babel-plugin-transform-class-properties": "^6.10.2",
|
|
"babel-plugin-transform-object-assign": "^6.8.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.8.0",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"babel-register": "^6.11.6",
|
|
"browser-sync": "^2.13.0",
|
|
"css-loader": "^0.23.1",
|
|
"eslint": "^3.1.1",
|
|
"eslint-plugin-import": "^1.11.1",
|
|
"exports-loader": "^0.6.3",
|
|
"file-loader": "^0.9.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^6.1.2",
|
|
"gulp-postcss": "^6.1.1",
|
|
"gulp-util": "^3.0.7",
|
|
"imports-loader": "^0.6.5",
|
|
"inquirer": "^3.2.3",
|
|
"lodash.kebabcase": "^4.1.1",
|
|
"postcss-cssnext": "^2.7.0",
|
|
"postcss-import": "^8.1.2",
|
|
"postcss-loader": "^0.9.1",
|
|
"tomlify-j0.4": "^2.2.0",
|
|
"tomljs": "^0.1.3",
|
|
"url-loader": "^0.5.7",
|
|
"webpack": "^1.13.1",
|
|
"whatwg-fetch": "^1.0.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"fsevents": "^1.0.15"
|
|
}
|
|
}
|