/usr/lib/nodejs/assertive/package.json is in node-assertive 2.1.1-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 50 51 52 53 54 55 56 57 58 59 60 61 | {
"name": "assertive",
"version": "2.1.1",
"description": "Assertive is a terse yet expressive assertion library, designed and ideally suited for coffee-script",
"license": "BSD-3-Clause",
"main": "lib/assertive.js",
"homepage": "https://github.com/groupon/assertive",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/groupon/assertive"
},
"bugs": {
"url": "https://github.com/groupon/assertive/issues"
},
"scripts": {
"build": "rm -rf lib && coffee --no-header -cbo lib src",
"pretest": "npm run build",
"test": "mocha",
"posttest": "nlm verify",
"test-run": "coffeelint src test && mocha",
"watch": "coffee --no-header -wcbo lib src & nodemon -w lib -w test -e coffee,js,json -x \"mocha\""
},
"engines": {
"node": ">=0.8"
},
"nlm": {
"license": {
"files": [
"src"
]
}
},
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"bluebird": "^3.3.4",
"coffee-script": "^1.10.0",
"coffeelint": "^1.10.1",
"coffeelint-use-strict": "0.0.1",
"mocha": "^2.0.0",
"nlm": "^2.0.0",
"nodemon": "^1.0.0"
},
"author": {
"name": "Groupon",
"email": "opensource@groupon.com"
},
"contributors": [
"David Bushong <dbushong@groupon.com>",
"Johan Sundström <jsundstrom@groupon.com>",
"Sean Massa <smassa@groupon.com>"
],
"files": [
"*.js",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}
|