dotfiles-generator
Version:
Utility to auto-generate dotfiles like .gitignore, .editorconfig etc. in your project.
55 lines (54 loc) • 1.7 kB
JSON
{
"name": "dotfiles-generator",
"version": "2.0.0",
"description": "Utility to auto-generate dotfiles like .gitignore, .editorconfig etc. in your project.",
"main": "./dist/lib/dotfileGenerator.js",
"scripts": {
"localInit": "node ./dist/bin/index.js .gitignore .npmignore .editorconfig --d ../../",
"postinstall": "(node dist/bin/scripts/checkGlobal) || (npm run localInit)",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint bin lib src",
"build": "rimraf dist && babel bin --out-dir dist/bin && babel lib --out-dir dist/lib && babel src --out-dir dist && babel src/dotfiles --out-dir dist/dotfiles --copy-files",
"prepublish": "npm run lint && npm run build"
},
"bin": {
"dotfiles-generator": "./dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sun1l/dotfiles-generator.git"
},
"keywords": [
"npmignore",
"editorconfig",
"gitignore",
"dotfiles",
"command-line-tool",
"dotfiles-generator",
"config",
"gitconfig"
],
"author": {
"name": "Sunil Kumar",
"url": "https://twitter.com/sun1lkumar"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sun1l/dotfiles-generator/issues"
},
"homepage": "https://github.com/sun1l/dotfiles-generator#readme",
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^2.1.2",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"conventional-changelog-cli": "^1.3.1",
"eslint": "^3.18.0",
"rimraf": "^2.6.1"
}
}