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.
54 lines
1.2 KiB
54 lines
1.2 KiB
{ |
|
"name": "collect-v8-coverage", |
|
"version": "1.0.1", |
|
"main": "index.js", |
|
"types": "index.d.ts", |
|
"repository": "SimenB/collect-v8-coverage", |
|
"files": [ |
|
"CHANGELOG.md", |
|
"index.js", |
|
"index.d.ts" |
|
], |
|
"license": "MIT", |
|
"devDependencies": { |
|
"@commitlint/cli": "^8.2.0", |
|
"@commitlint/config-conventional": "^8.2.0", |
|
"@semantic-release/changelog": "^3.0.6", |
|
"@semantic-release/git": "^7.0.18", |
|
"husky": "^3.0.9", |
|
"lint-staged": "^9.4.2", |
|
"prettier": "^1.19.1", |
|
"semantic-release": "^15.13.31" |
|
}, |
|
"prettier": { |
|
"singleQuote": true, |
|
"trailingComma": "all" |
|
}, |
|
"lint-staged": { |
|
"*.{js,ts,md,json}": [ |
|
"prettier --write", |
|
"git add" |
|
] |
|
}, |
|
"commitlint": { |
|
"extends": [ |
|
"@commitlint/config-conventional" |
|
] |
|
}, |
|
"husky": { |
|
"hooks": { |
|
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", |
|
"pre-commit": "lint-staged" |
|
} |
|
}, |
|
"release": { |
|
"plugins": [ |
|
"@semantic-release/commit-analyzer", |
|
"@semantic-release/release-notes-generator", |
|
"@semantic-release/changelog", |
|
"@semantic-release/npm", |
|
"@semantic-release/git", |
|
"@semantic-release/github" |
|
] |
|
} |
|
}
|
|
|