mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 14:19:58 +00:00
78c4a18f0b
* makes all package.json author fields consistent * adds Preston Alvarado as a contributor per review feedback.
92 lines
3.6 KiB
JSON
92 lines
3.6 KiB
JSON
{
|
|
"name": "insomnia",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"author": "Kong <office@konghq.com>",
|
|
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/kong/insomnia",
|
|
"bugs": {
|
|
"url": "https://github.com/kong/insomnia/issues"
|
|
},
|
|
"homepage": "https://github.com/kong/insomnia#readme",
|
|
"scripts": {
|
|
"build": "lerna run build --parallel",
|
|
"lint": "lerna run lint --parallel --stream --no-bail",
|
|
"lint:fix": "lerna run lint:fix --parallel --stream --no-bail",
|
|
"bootstrap": "npm install && lerna bootstrap && lerna run --parallel --stream bootstrap",
|
|
"version": "lerna version --exact --preid beta --force-publish",
|
|
"version:dry": "npm run version -- --no-git-tag-version",
|
|
"publish": "lerna publish from-git --pre-dist-tag beta",
|
|
"clean": "lerna clean --yes && rimraf node_modules",
|
|
"test": "lerna run --stream --parallel test",
|
|
"test:pre-release": "npm run test --prefix packages/insomnia-app",
|
|
"inso-start": "npm start --prefix packages/insomnia-inso",
|
|
"app-start": "npm start --prefix packages/insomnia-app",
|
|
"app-build": "npm run build --prefix packages/insomnia-app",
|
|
"app-package": "npm run package --prefix packages/insomnia-app",
|
|
"app-release": "npm run release --prefix packages/insomnia-app",
|
|
"storybook-start": "npm run storybook --prefix packages/insomnia-components",
|
|
"storybook-legacy-start": "npm run storybook --prefix packages/insomnia-app",
|
|
"preinstall": "node ./scripts/check-version.js",
|
|
"app-build:smoke": "cross-env SMOKE_TEST=true npm run app-build",
|
|
"app-package:smoke": "cross-env SMOKE_TEST=true npm run app-package",
|
|
"test:smoke:build": "npm run test:build --prefix packages/insomnia-smoke-test",
|
|
"test:smoke:package": "npm run test:package --prefix packages/insomnia-smoke-test",
|
|
"test:smoke:cli": "npm run test:cli --prefix packages/insomnia-smoke-test"
|
|
},
|
|
"lint-staged": {
|
|
"{packages,plugins}/**/*.{js,json,ts,tsx}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.10.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
|
"@babel/plugin-proposal-decorators": "^7.4.0",
|
|
"@babel/preset-env": "^7.4.3",
|
|
"@babel/preset-flow": "^7.9.0",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"@jest/types": "^26.6.2",
|
|
"@types/chai": "^4.2.15",
|
|
"@types/eslint": "4.16.1",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/node": "^14.14.32",
|
|
"@types/rimraf": "^3.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
"@typescript-eslint/parser": "^4.16.1",
|
|
"babel-loader": "^8.0.5",
|
|
"babel-plugin-inline-react-svg": "^1.1.0",
|
|
"babel-plugin-styled-components": "^1.12.0",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.2.0",
|
|
"eslint-config-semistandard": "^15.0.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-plugin-filenames": "^1.2.0",
|
|
"eslint-plugin-flowtype": "^4.7.0",
|
|
"eslint-plugin-html": "^6.0.1",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-jest": "^21.15.1",
|
|
"eslint-plugin-jest-formatting": "^2.0.1",
|
|
"eslint-plugin-json": "^1.2.0",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"eslint-plugin-promise": "^3.7.0",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"eslint-plugin-react-hooks": "^4.0.4",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"husky": "^4.2.5",
|
|
"jest": "^26.6.3",
|
|
"lerna": "^3.22.0",
|
|
"lint-staged": "^10.2.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.6",
|
|
"type-fest": "^1.0.2",
|
|
"typescript": "^4.2.3"
|
|
}
|
|
}
|