mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
"name": "comment-parser",
|
|
"version": "0.7.2",
|
|
"description": "Generic JSDoc-like comment parser. ",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"mocha": "^6.2.2",
|
|
"nodemon": "^1.19.4",
|
|
"nyc": "^14.1.1",
|
|
"typescript": "^3.6.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.0.0"
|
|
},
|
|
"scripts": {
|
|
"typescript": "tsc index.d.ts",
|
|
"lint:fix": "eslint --fix .",
|
|
"test:lint": "eslint .",
|
|
"test:typescript": "tsc index.d.ts",
|
|
"test:unit": "nyc mocha tests",
|
|
"test": "npm run test:typescript && npm run test:lint && npm run test:unit",
|
|
"watch": "nodemon -q -i node_modules -x npm test"
|
|
},
|
|
"nyc": {
|
|
"branches": 85,
|
|
"lines": 85,
|
|
"functions": 85,
|
|
"statements": 85,
|
|
"exclude": [
|
|
"tests"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:yavorskiy/comment-parser.git"
|
|
},
|
|
"keywords": [
|
|
"jsdoc",
|
|
"comments",
|
|
"parser"
|
|
],
|
|
"author": "Sergii Iavorskyi <yavorskiy.s@gmail.com> (https://github.com/yavorskiy)",
|
|
"contributors": [
|
|
"Alexej Yaroshevich (https://github.com/zxqfox)",
|
|
"Andre Wachsmuth (https://github.com/blutorange)",
|
|
"Brett Zamir (https://github.com/brettz9)",
|
|
"Dieter Oberkofler (https://github.com/doberkofler)",
|
|
"Evgeny Reznichenko (https://github.com/zxcabs)",
|
|
"Javier \"Ciberma\" Mora (https://github.com/jhm-ciberman)",
|
|
"Jordan Harband (https://github.com/ljharb)",
|
|
"tengattack (https://github.com/tengattack)"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/yavorskiy/comment-parser/issues"
|
|
},
|
|
"homepage": "https://github.com/yavorskiy/comment-parser"
|
|
}
|