@conventional-commits/parser
Version:
reference implementation of conventionalcommits.org spec
51 lines (50 loc) • 1.32 kB
JSON
{
"name": "@conventional-commits/parser",
"version": "0.4.1",
"description": "reference implementation of conventionalcommits.org spec",
"main": "index.js",
"files": [
"lib",
"index.d.ts",
"index.js"
],
"types": "index.d.ts",
"scripts": {
"test": "c8 mocha ./test/*.js",
"test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"coverage": "c8 --check-coverage mocha --timeout=8000 ./test/*.js",
"posttest": "standard",
"fix": "standard --fix",
"inspect": "./scripts/inspect.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/conventional-commits/parser.git"
},
"keywords": [
"parser",
"conventional",
"commits"
],
"author": "Ben Coe <bencoe@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/conventional-commits/parser/issues"
},
"homepage": "https://github.com/conventional-commits/parser#readme",
"devDependencies": {
"c8": "^7.3.5",
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"mocha": "^8.2.1",
"standard": "^16.0.3",
"unist-util-inspect": "^6.0.1",
"unist-util-source": "^3.0.0",
"unist-util-visit": "^2.0.3",
"yargs": "^16.2.0"
},
"dependencies": {
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.1"
}
}