hoppscotch/package.json

24 lines
533 B
JSON
Raw Normal View History

2019-08-21 13:18:20 +00:00
{
"name": "hoppscotch-app",
2021-08-27 20:51:37 +00:00
"version": "2.0.0",
2021-03-14 15:15:57 +00:00
"description": "Open source API development ecosystem",
2021-04-23 11:39:20 +00:00
"author": "Hoppscotch (support@hoppscotch.io)",
2020-02-24 18:44:50 +00:00
"private": true,
"scripts": {
2021-09-10 06:32:18 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,js,vue}": "eslint",
"*.{css,scss,vue}": "stylelint"
},
"workspaces": [
"./packages/*"
2021-09-10 06:32:18 +00:00
],
"dependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.1.2"
}
}