mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-08 11:03:49 -05:00
Snyk has created this PR to upgrade termcolors from 0.5.0 to 0.7.0. See this package in npm: https://www.npmjs.com/package/termcolors See this project in Snyk: https://app.snyk.io/org/joshdick/project/8bcd347a-088a-4466-84d3-9ff5a6e77b49?utm_source=github&utm_medium=upgrade-pr
33 lines
688 B
JSON
33 lines
688 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.3"
|
|
},
|
|
"dependencies": {
|
|
"termcolors": "0.7.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm test"
|
|
}
|
|
}
|
|
}
|