/usr/lib/nodejs/sinon-chai/package.json is in node-sinon-chai 2.10.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 | {
"name": "sinon-chai",
"description": "Extends Chai with assertions for the Sinon.JS mocking framework.",
"keywords": [
"chai",
"chai-plugin",
"browser",
"vendor",
"mocks-and-spies",
"sinon",
"testing",
"spies",
"stubs",
"mocks"
],
"version": "2.10.0",
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
"license": "(BSD-2-Clause OR WTFPL)",
"repository": "domenic/sinon-chai",
"main": "./lib/sinon-chai.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha",
"test-travis": "npm install chai@$CHAI_VERSION && npm install sinon@$SINON_VERSION && npm test",
"lint": "jshint ./lib",
"cover": "istanbul cover node_modules/mocha/bin/_mocha && opener ./coverage/lcov-report/lib/sinon-chai.js.html"
},
"peerDependencies": {
"chai": ">=1.9.2 <4",
"sinon": "^1.4.0 || ^2.1.0"
},
"devDependencies": {
"chai": "^3.0.0",
"coffee-script": "~1.8.0",
"istanbul": "~0.3.2",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"opener": "^1.4.0",
"sinon": "^2.1.0"
}
}
|