123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "microargs",
- "version": "1.1.0",
- "description": "CLI arguments micro parser",
- "main": "index.js",
- "scripts": {
- "test": "yarn run test:lint && yarn run test:unit",
- "test:lint": "eslint *.js",
- "test:unit": "jest"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/pawelgalazka/microargs.git"
- },
- "keywords": [
- "argv",
- "getopt",
- "parser",
- "minimist"
- ],
- "author": "Pawel Galazka",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/pawelgalazka/microargs/issues"
- },
- "engines": {
- "node": ">=6.11.1"
- },
- "homepage": "https://github.com/pawelgalazka/microargs#readme",
- "devDependencies": {
- "eslint": "4.9.0",
- "eslint-config-standard": "10.2.1",
- "eslint-plugin-import": "2.8.0",
- "eslint-plugin-node": "5.2.0",
- "eslint-plugin-promise": "3.6.0",
- "eslint-plugin-standard": "3.0.1",
- "jest": "21.2.1"
- }
- }
|