UNPKG

2.9 kBJSONView Raw
1{
2 "name": "jade",
3 "description": "A clean, whitespace-sensitive template language for writing HTML",
4 "version": "1.11.0",
5 "author": "TJ Holowaychuk <tj@vision-media.ca>",
6 "maintainers": [
7 "Forbes Lindesay <forbes@lindesay.co.uk>",
8 "Matthias Le Brun <mlbli@me.com>",
9 "Joshua Appelman <joshua@jbna.nl>",
10 "Jonathan Ong <jonathanrichardong@gmail.com>",
11 "Alex Kocharin <alex@kocharin.ru>",
12 "Hemanth <hemanth.hm@gmail.com>",
13 "Timothy Gu <timothygu99@gmail.com>",
14 "Andreas Lubbe <git@lubbe.org>"
15 ],
16 "license": "MIT",
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/jadejs/jade"
20 },
21 "main": "lib",
22 "bin": {
23 "jade": "./bin/jade.js"
24 },
25 "dependencies": {
26 "character-parser": "1.2.1",
27 "clean-css": "^3.1.9",
28 "commander": "~2.6.0",
29 "constantinople": "~3.0.1",
30 "jstransformer": "0.0.2",
31 "mkdirp": "~0.5.0",
32 "transformers": "2.1.0",
33 "uglify-js": "^2.4.19",
34 "void-elements": "~2.0.1",
35 "with": "~4.0.0"
36 },
37 "devDependencies": {
38 "browserify": "*",
39 "browserify-middleware": "~4.1.0",
40 "code-mirror": "~3.22.0",
41 "coffee-script": "*",
42 "coveralls": "^2.11.2",
43 "express": "~4.10.4",
44 "github-basic": "^4.1.2",
45 "handle": "~1.0.0",
46 "highlight-codemirror": "~4.1.0",
47 "inconsolata": "0.0.2",
48 "istanbul": "*",
49 "jade-code-mirror": "~1.0.5",
50 "jade-highlighter": "~1.0.5",
51 "jstransformer-cdata": "0.0.3",
52 "jstransformer-coffee-script": "0.0.2",
53 "jstransformer-less": "^1.0.0",
54 "jstransformer-marked": "0.0.1",
55 "jstransformer-stylus": "0.0.1",
56 "jstransformer-verbatim": "0.0.2",
57 "less": "<2.0.0",
58 "less-file": "0.0.9",
59 "linify": "*",
60 "lsr": "^1.0.0",
61 "marked": "~0.3.3",
62 "mocha": "*",
63 "opener": "^1.3.0",
64 "pull-request": "^3.0.0",
65 "rimraf": "^2.2.8",
66 "should": "*",
67 "stop": "^3.0.0-rc1",
68 "stylus": "*",
69 "twbs": "0.0.6",
70 "uglify-js": "*"
71 },
72 "component": {
73 "scripts": {
74 "jade": "runtime.js"
75 }
76 },
77 "scripts": {
78 "test": "mocha -R spec",
79 "precoverage": "rimraf coverage && rimraf cov-pt*",
80 "coverage": "istanbul cover --report none --dir cov-pt0 node_modules/mocha/bin/_mocha -- -R dot",
81 "postcoverage": "istanbul report --include cov-pt\\*/coverage.json && rimraf cov-pt*",
82 "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
83 "prepublish": "npm prune && linify transform bin && npm run build",
84 "build": "npm run compile",
85 "compile": "npm run compile-full && npm run compile-runtime",
86 "compile-full": "browserify ./lib/index.js --standalone jade -x ./node_modules/transformers > jade.js",
87 "compile-runtime": "browserify ./lib/runtime.js --standalone jade > runtime.js"
88 },
89 "browser": {
90 "fs": false,
91 "./lib/filters.js": "./lib/filters-client.js"
92 },
93 "homepage": "http://jade-lang.com"
94}