You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
860 B
23 lines
860 B
{
|
|
"devDependencies": {
|
|
"@nuxtjs/eslint-config": "^1.0.1",
|
|
"@nuxtjs/eslint-module": "^1.2.0",
|
|
"@prantlf/jsonlint": "^10.2.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"convert-svg-to-png": "^0.5.0",
|
|
"dotenv": "^8.2.0",
|
|
"eslint": "^6.1.0",
|
|
"eslint-config-prettier": "^4.1.0",
|
|
"eslint-plugin-nuxt": "^0.5.2",
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"prettier": "^1.16.4"
|
|
},
|
|
"scripts": {
|
|
"validate:json": "jsonlint -qV ./schema.json ./src/apps.json && node ./bin/validate.js",
|
|
"validate": "yarn validate:json",
|
|
"convert": "cd ./src/drivers/webextension/images/icons ; cp *.svg converted ; cd converted ; convert-svg-to-png *.svg --width 32 --height 32 ; rm *.svg",
|
|
"jsonprettify": "jsonlint -si --trim-trailing-commas --enforce-double-quotes ./src/apps.json",
|
|
"build": "yarn validate && yarn jsonprettify"
|
|
}
|
|
}
|