mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-19 09:03:49 -05:00
41 lines
955 B
JSON
41 lines
955 B
JSON
{
|
|
"name": "track-changed",
|
|
"version": "1.0.2",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"track-changed": "index.js"
|
|
},
|
|
"repository": "git@github.com:morhetz/track-changed.git",
|
|
"author": "Pavel Pertsev <morhetz@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "babel src -d dist",
|
|
"prepublish": "BABEL_ENV=production npm run build",
|
|
"lint": "eslint .",
|
|
"precommit": "lint-staged",
|
|
"postversion": "git push && git push --tags"
|
|
},
|
|
"dependencies": {
|
|
"app-root-path": "^2.0.0",
|
|
"cosmiconfig": "^1.1.0",
|
|
"execa": "^0.6.0",
|
|
"listr": "^0.10.0",
|
|
"minimatch": "^3.0.0",
|
|
"npm-which": "^3.0.1",
|
|
"which": "^1.2.11"
|
|
},
|
|
"devDependencies": {
|
|
"@bruitt/eslint-config-lint-base": "^1.0.0",
|
|
"babel-cli": "^6.14.0",
|
|
"babel-core": "^6.14.0",
|
|
"babel-preset-bruitt-lib": "^1.1.0",
|
|
"husky": "^0.13.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|