/usr/lib/nodejs/pad/package.json is in node-pad 1.0.2-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 | {
"name": "pad",
"description": "Left and right string padding",
"version": "1.0.2",
"author": "David Worms <david@adaltas.com>",
"contributors": [
{
"name": "David Worms",
"email": "david@adaltas.com"
}
],
"devDependencies": {
"coffee-script": "^1.11.1",
"mocha": "^3.1.2",
"should": "^11.1.1"
},
"engines": {
"node": ">= 0.4.0"
},
"keywords": [
"pad",
"string"
],
"license": "BSD-3-Clause",
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/wdavidw/node-pad.git"
},
"scripts": {
"coffee": "coffee -b -o lib src",
"pretest": "coffee -b -o lib src",
"test": "mocha --compilers coffee:coffee-script/register --reporter dot"
}
}
|