/usr/lib/nodejs/coa/package.json is in node-coa 2.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | {
"name": "coa",
"description": "Command-Option-Argument: Yet another parser for command line options.",
"version": "2.0.0",
"homepage": "http://github.com/veged/coa",
"author": "Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",
"maintainers": [
"Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",
"Sergey Belov <peimei@ya.ru> (http://github.com/arikon)"
],
"contributors": [
"Sergey Belov <peimei@ya.ru> (http://github.com/arikon)"
],
"files": [
"lib/",
"index.js",
"README.ru.md"
],
"repository": {
"type": "git",
"url": "git://github.com/veged/coa.git"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"q": "^1.1.2"
},
"devDependencies": {
"chai": "~1.7.2",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"eslint-config-pedant": "^0.8.0",
"mocha": "~1.21.4",
"nyc": "^10.1.2"
},
"scripts": {
"clean": "rm -r .nyc_output coverage",
"coverage": "nyc --reporter=text --reporter=html mocha; echo; echo 'Open coverage/index.html file in your browser'",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha"
},
"engines": {
"node": ">= 4.0"
},
"license": "MIT"
}
|