/usr/lib/nodejs/immediate/package.json is in node-immediate 3.2.3+dfsg-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 | {
"name": "immediate",
"version": "3.2.3",
"description": "A cross browser microtask library",
"contributors": [
"Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
"Donavon West <github@donavon.com> (http://donavon.com)",
"Yaffle",
"Calvin Metcalf <calvin.metcalf@gmail.com>"
],
"testling": {
"files": "test/tests.js",
"browsers": [
"ie/6..latest",
"chrome/latest",
"firefox/3..latest",
"opera/10..latest",
"safari/4..latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/immediate.git"
},
"browser": {
"./nextTick": false
},
"bugs": "https://github.com/calvinmetcalf/immediate/issues",
"main": "lib/index.js",
"scripts": {
"build": "npm run build-js && npm run uglify",
"uglify": "uglifyjs dist/immediate.js -mc > dist/immediate.min.js",
"build-js": "browserify -s immediate ./lib/index.js | derequire > dist/immediate.js",
"test": "jshint lib/*.js && node test/tests.js | tspec"
},
"devDependencies": {
"browserify": "^10.0.0",
"derequire": "^2.0.0",
"jshint": "^2.5.1",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"uglify-js": "^2.4.13"
}
}
|