mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-18 16:45:37 -05:00
* Remove accidental usage of private authenticated NPM registry; add explicit .npmrc to prevent this in the future * Update ESLint/Husky to latest versions * `npm audit fix` termcolors transitive lodash dependency
29 lines
673 B
JSON
29 lines
673 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",
|
|
"prepare": "cd .. && husky install build/.husky"
|
|
},
|
|
"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": "^7.29.0",
|
|
"husky": "^6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"termcolors": "0.7.3"
|
|
}
|
|
}
|