123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "comment-parser",
- "version": "0.5.5",
- "description": "Generic JSDoc-like comment parser. ",
- "main": "index.js",
- "types": "index.d.ts",
- "directories": {
- "test": "tests"
- },
- "dependencies": {},
- "devDependencies": {
- "chai": "^4.2.0",
- "eslint": "^5.16.0",
- "eslint-config-standard": "^10.2.1",
- "eslint-plugin-import": "^2.7.0",
- "eslint-plugin-node": "^5.1.1",
- "eslint-plugin-promise": "^3.5.0",
- "eslint-plugin-standard": "^3.0.1",
- "mocha": "^5.2.0",
- "nodemon": "^1.18.9"
- },
- "scripts": {
- "test:lint": "eslint .",
- "test:unit": "mocha tests",
- "test": "npm run test:lint && npm run test:unit",
- "watch": "nodemon -q -i node_modules -x npm test"
- },
- "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)",
- "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"
- }
|