37 lines
1007 B
JSON
37 lines
1007 B
JSON
|
{
|
||
|
"name": "string-argv",
|
||
|
"description": "string-argv parses a string into an argument array to mimic process.argv. This is useful when testing Command Line Utilities that you want to pass arguments to.",
|
||
|
"version": "0.0.2",
|
||
|
"author": {
|
||
|
"name": "Anthony McCormick",
|
||
|
"email": "anthony.mccormick AT gmail.com"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"keywords": [
|
||
|
"logger"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"lint": "eslint .",
|
||
|
"test": "jasmine JASMINE_CONFIG_PATH=test/config.json --verbose --color --captureExceptions && npm run lint"
|
||
|
},
|
||
|
"main": "index",
|
||
|
"engines": {
|
||
|
"node": ">=0.6.19"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/mccormicka/string-argv/issues"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/mccormicka/string-argv"
|
||
|
},
|
||
|
"homepage": "https://github.com/mccormicka/string-argv",
|
||
|
"readmeFilename": "README.md",
|
||
|
"dependencies": {},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^2.0.0",
|
||
|
"eslint-config-cellule": "^3.0.0",
|
||
|
"jasmine": "^2.4.1"
|
||
|
}
|
||
|
}
|