mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-18 16:45:37 -05:00
* chore(package): update husky to version 4.2.2 * chore(package): update lockfile build/package-lock.json Co-authored-by: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com>
33 lines
689 B
JSON
33 lines
689 B
JSON
{
|
|
"name": "onedark.vim-builder",
|
|
"version": "1.0.0",
|
|
"description": "Builds the onedark.vim Vim colorscheme and associated files",
|
|
"main": "build.js",
|
|
"scripts": {
|
|
"build": "node build.js",
|
|
"test": "eslint build.js && node build.js check"
|
|
},
|
|
"author": {
|
|
"name": "Josh Dick",
|
|
"email": "josh@joshdick.net",
|
|
"url": "http://joshdick.net"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/joshdick/onedark.vim.git"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^6.5.1",
|
|
"husky": "^4.2.2"
|
|
},
|
|
"dependencies": {
|
|
"termcolors": "latest"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm test"
|
|
}
|
|
}
|
|
}
|