chore(release): v0.0.1 [skip ci]
This commit is contained in:
parent
656ef25406
commit
233fc90ce1
2 changed files with 50 additions and 46 deletions
4
CHANGELOG.md
Normal file
4
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
## v0.0.1 (2022-10-24)
|
||||
|
||||
**NOTE:** This is a patch release only
|
||||
|
||||
92
package.json
92
package.json
|
|
@ -1,47 +1,47 @@
|
|||
{
|
||||
"name": "@adeattwood/diff-cov",
|
||||
"version": "0.0.1",
|
||||
"description": "Simple CLI to get test coverage on a diff",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
"author": {
|
||||
"name": "Ade Attwood",
|
||||
"email": "code@adeattwood.co.uk",
|
||||
"url": "https://adeattwood.co.uk"
|
||||
},
|
||||
"bin": {
|
||||
"diff-cov": "./bin/diff-cov.js"
|
||||
},
|
||||
"files": [
|
||||
"lib/**/*",
|
||||
"bin/**/*",
|
||||
"README.md"
|
||||
],
|
||||
"keywords": [
|
||||
"diff",
|
||||
"coverage",
|
||||
"lcov"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "jest",
|
||||
"lint": "eslint src tests",
|
||||
"build": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": "^18.11.4",
|
||||
"yargs": "^17.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^29.1.1",
|
||||
"@typescript-eslint/eslint-plugin": "^5.38.1",
|
||||
"@typescript-eslint/parser": "^5.38.1",
|
||||
"eslint": "^8.25.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"jest": "^29.1.2",
|
||||
"prettier": "^2.7.1",
|
||||
"ts-jest": "^29.0.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.8.4"
|
||||
}
|
||||
}
|
||||
"name": "@adeattwood/diff-cov",
|
||||
"version": "0.0.1",
|
||||
"description": "Simple CLI to get test coverage on a diff",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
"author": {
|
||||
"name": "Ade Attwood",
|
||||
"email": "code@adeattwood.co.uk",
|
||||
"url": "https://adeattwood.co.uk"
|
||||
},
|
||||
"bin": {
|
||||
"diff-cov": "./bin/diff-cov.js"
|
||||
},
|
||||
"files": [
|
||||
"lib/**/*",
|
||||
"bin/**/*",
|
||||
"README.md"
|
||||
],
|
||||
"keywords": [
|
||||
"diff",
|
||||
"coverage",
|
||||
"lcov"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "jest",
|
||||
"lint": "eslint src tests",
|
||||
"build": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": "^18.11.4",
|
||||
"yargs": "^17.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^29.1.1",
|
||||
"@typescript-eslint/eslint-plugin": "^5.38.1",
|
||||
"@typescript-eslint/parser": "^5.38.1",
|
||||
"eslint": "^8.25.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"jest": "^29.1.2",
|
||||
"prettier": "^2.7.1",
|
||||
"ts-jest": "^29.0.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.8.4"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue