-
- Downloads
WIP: Cleanup (coscine/issues#1971)
parent
6bbde340
No related branches found
No related tags found
... | @@ -2,6 +2,67 @@ | ... | @@ -2,6 +2,67 @@ |
"name": "@coscine/api-client", | "name": "@coscine/api-client", | ||
"version": "1.3.0", | "version": "1.3.0", | ||
"description": "This project contains the generated api connection classes.", | "description": "This project contains the generated api connection classes.", | ||
"scripts": { | |||
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs src/index.ts", | |||
"lint": "eslint './src/**/*.{js,ts,tsx,vue,md}'", | |||
"lint:fix": "eslint './src/**/*.{js,ts,tsx,vue,md}' --fix", | |||
"precommit": "lint-staged", | |||
"test": "jest --coverage", | |||
"test:unit": "jest", | |||
"test:watch": "jest --coverage --watch", | |||
"semantic-release": "semantic-release" | |||
}, | |||
"dependencies": { | |||
"axios": "^0.21.1" | |||
}, | |||
"devDependencies": { | |||
"@commitlint/cli": "^13.1.0", | |||
"@commitlint/config-conventional": "^13.1.0", | |||
"@hutson/semantic-delivery-gitlab": "^9.1.0", | |||
"@rollup/plugin-commonjs": "^20.0.0", | |||
"@rollup/plugin-json": "^4.1.0", | |||
"@rollup/plugin-node-resolve": "^13.0.4", | |||
"@semantic-release/commit-analyzer": "^8.0.1", | |||
"@semantic-release/git": "^9.0.0", | |||
"@semantic-release/gitlab": "^6.2.2", | |||
"@semantic-release/npm": "^7.1.3", | |||
"@semantic-release/release-notes-generator": "^9.0.3", | |||
"@types/jest": "^27.0.1", | |||
"@types/node": "^16.7.8", | |||
"@typescript-eslint/eslint-plugin": "^4.0.1", | |||
"@typescript-eslint/parser": "^4.0.1", | |||
"colors": "^1.4.0", | |||
"commitizen": "^4.2.4", | |||
"conventional-changelog-eslint": "^3.0.9", | |||
"coveralls": "^3.1.1", | |||
"cross-env": "^7.0.3", | |||
"cz-conventional-changelog": "^3.3.0", | |||
"eslint": "^7.8.0", | |||
"eslint-config-prettier": "^6.11.0", | |||
"eslint-import-resolver-node": "^0.3.6", | |||
"eslint-plugin-eslint-comments": "^3.2.0", | |||
"eslint-plugin-functional": "^3.0.2", | |||
"eslint-plugin-import": "^2.22.0", | |||
"husky": "^7.0.2", | |||
"jest": "^27.1.0", | |||
"jest-config": "^27.1.0", | |||
"lint-staged": "^11.1.2", | |||
"lodash.camelcase": "^4.3.0", | |||
"prettier": "^2.3.2", | |||
"prompt": "^1.2.0", | |||
"replace-in-file": "^6.2.0", | |||
"rimraf": "^3.0.2", | |||
"rollup": "^2.56.3", | |||
"rollup-plugin-sourcemaps": "^0.6.3", | |||
"rollup-plugin-typescript2": "^0.30.0", | |||
"semantic-release": "^17.4.7", | |||
"shelljs": "^0.8.4", | |||
"ts-jest": "^27.0.5", | |||
"ts-node": "^10.2.1", | |||
"tslib": "^2.3.1", | |||
"typedoc": "^0.21.9", | |||
"typescript": "~4.4.4" | |||
}, | |||
"keywords": [ | "keywords": [ | ||
"coscine", | "coscine", | ||
"api", | "api", | ||
... | @@ -23,15 +84,6 @@ | ... | @@ -23,15 +84,6 @@ |
"engines": { | "engines": { | ||
"node": ">=6.0.0" | "node": ">=6.0.0" | ||
}, | }, | ||
"scripts": { | |||
"lint": "eslint --fix src/**/*.ts", | |||
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs src/index.ts", | |||
"precommit": "lint-staged", | |||
"semantic-release": "semantic-release", | |||
"test": "jest --coverage", | |||
"test:unit": "jest", | |||
"test:watch": "jest --coverage --watch" | |||
}, | |||
"lint-staged": { | "lint-staged": { | ||
"{src,test}/**/*.ts": [ | "{src,test}/**/*.ts": [ | ||
"eslint --fix" | "eslint --fix" | ||
... | @@ -78,56 +130,5 @@ | ... | @@ -78,56 +130,5 @@ |
"@commitlint/config-conventional" | "@commitlint/config-conventional" | ||
] | ] | ||
}, | }, | ||
"devDependencies": { | |||
"@commitlint/cli": "^13.1.0", | |||
"@commitlint/config-conventional": "^13.1.0", | |||
"@hutson/semantic-delivery-gitlab": "^9.1.0", | |||
"@rollup/plugin-commonjs": "^20.0.0", | |||
"@rollup/plugin-json": "^4.1.0", | |||
"@rollup/plugin-node-resolve": "^13.0.4", | |||
"@semantic-release/commit-analyzer": "^8.0.1", | |||
"@semantic-release/git": "^9.0.0", | |||
"@semantic-release/gitlab": "^6.2.2", | |||
"@semantic-release/npm": "^7.1.3", | |||
"@semantic-release/release-notes-generator": "^9.0.3", | |||
"@types/jest": "^27.0.1", | |||
"@types/node": "^16.7.8", | |||
"@typescript-eslint/eslint-plugin": "^4.0.1", | |||
"@typescript-eslint/parser": "^4.0.1", | |||
"colors": "^1.4.0", | |||
"commitizen": "^4.2.4", | |||
"conventional-changelog-eslint": "^3.0.9", | |||
"coveralls": "^3.1.1", | |||
"cross-env": "^7.0.3", | |||
"cz-conventional-changelog": "^3.3.0", | |||
"eslint": "^7.8.0", | |||
"eslint-config-prettier": "^6.11.0", | |||
"eslint-import-resolver-node": "^0.3.6", | |||
"eslint-plugin-eslint-comments": "^3.2.0", | |||
"eslint-plugin-functional": "^3.0.2", | |||
"eslint-plugin-import": "^2.22.0", | |||
"husky": "^7.0.2", | |||
"jest": "^27.1.0", | |||
"jest-config": "^27.1.0", | |||
"lint-staged": "^11.1.2", | |||
"lodash.camelcase": "^4.3.0", | |||
"prettier": "^2.3.2", | |||
"prompt": "^1.2.0", | |||
"replace-in-file": "^6.2.0", | |||
"rimraf": "^3.0.2", | |||
"rollup": "^2.56.3", | |||
"rollup-plugin-sourcemaps": "^0.6.3", | |||
"rollup-plugin-typescript2": "^0.30.0", | |||
"semantic-release": "^17.4.7", | |||
"shelljs": "^0.8.4", | |||
"ts-jest": "^27.0.5", | |||
"ts-node": "^10.2.1", | |||
"tslib": "^2.3.1", | |||
"typedoc": "^0.21.9", | |||
"typescript": "~4.4.4" | |||
}, | |||
"dependencies": { | |||
"axios": "^0.21.1" | |||
}, | |||
"packageManager": "yarn@3.1.1" | "packageManager": "yarn@3.1.1" | ||
} | } |
Please register or sign in to comment