/usr/lib/nodejs/jade/package.json is in node-jade 1.5.0+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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | {
"name": "jade",
"description": "Jade template engine",
"version": "1.5.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"maintainers": [
"forbeslindesay <forbes@lindesay.co.uk>",
"bloodyowl <mlbli@me.com",
"jbnicolai <joshua@jbna.nl>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/visionmedia/jade"
},
"main": "./index.js",
"bin": {
"jade": "./bin/jade.js"
},
"dependencies": {
"commander": "2.1.0",
"mkdirp": "~0.5.0",
"transformers": "2.1.0",
"character-parser": "1.2.0",
"monocle": "1.1.51",
"with": "~3.0.0",
"constantinople": "~2.0.0"
},
"devDependencies": {
"coffee-script": "*",
"mocha": "*",
"istanbul": "*",
"markdown": "*",
"stylus": "*",
"should": "*",
"less": "*",
"uglify-js": "*",
"browserify": "*",
"linify": "*",
"less-file": "0.0.8",
"express": "~3.4.8",
"browserify-middleware": "~2.4.0",
"twbs": "0.0.6",
"highlight-codemirror": "~3.20.0",
"inconsolata": "0.0.2",
"jade-code-mirror": "~1.0.5",
"code-mirror": "~3.22.0",
"handle": "~1.0.0",
"jade-highlighter": "~1.0.5",
"marked": "~0.3.2",
"stop": "^3.0.0-rc1",
"opener": "^1.3.0",
"github-basic": "^3.0.0",
"pull-request": "^3.0.0",
"lsr": "^1.0.0",
"rimraf": "^2.2.8"
},
"component": {
"scripts": {
"jade": "runtime.js"
}
},
"scripts": {
"test": "mocha -R spec && npm run coverage",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"prepublish": "npm prune && linify transform bin && npm run build",
"build": "npm run compile",
"compile": "npm run compile-full && npm run compile-runtime",
"compile-full": "browserify ./lib/jade.js --standalone jade -x ./node_modules/transformers > jade.js",
"compile-runtime": "browserify ./lib/runtime.js --standalone jade > runtime.js"
},
"browser": {
"./lib/filters.js": "./lib/filters-client.js"
}
}
|