forked from jnordberg/jade-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.85 KB
/
package.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "oc-jade-legacy",
"description": "Jade version 1.x with security patches",
"version": "1.11.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"maintainers": [
"Forbes Lindesay <forbes@lindesay.co.uk>",
"Matthias Le Brun <mlbli@me.com>",
"Joshua Appelman <joshua@jbna.nl>",
"Jonathan Ong <jonathanrichardong@gmail.com>",
"Alex Kocharin <alex@kocharin.ru>",
"Hemanth <hemanth.hm@gmail.com>",
"Timothy Gu <timothygu99@gmail.com>",
"Andreas Lubbe <git@lubbe.org>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jnordberg/jade-legacy"
},
"main": "lib",
"bin": {
"jade": "./bin/jade.js"
},
"dependencies": {
"character-parser": "1.2.2",
"clean-css": "^4.2.1",
"commander": "~2.9.0",
"constantinople": "~3.1.0",
"jstransformer": "1.0.0",
"jstransformer-markdown": "^1.1.1",
"mkdirp": "~0.5.0",
"uglify-js": "^2.7.5",
"void-elements": "~2.0.1",
"with": "~5.1.1"
},
"devDependencies": {
"browserify": "*",
"browserify-middleware": "~4.1.0",
"code-mirror": "~3.22.0",
"coffee-script": "*",
"coveralls": "^2.11.2",
"express": "~4.10.4",
"github-basic": "^4.1.2",
"handle": "~1.0.0",
"highlight-codemirror": "~4.1.0",
"inconsolata": "0.0.2",
"istanbul": "*",
"jade-code-mirror": "~1.0.5",
"jade-highlighter": "~1.0.5",
"jstransformer-cdata": "0.0.3",
"jstransformer-coffee-script": "0.0.2",
"jstransformer-less": "^1.0.0",
"jstransformer-marked": "0.0.1",
"jstransformer-stylus": "0.0.1",
"jstransformer-verbatim": "0.0.2",
"less": "<2.0.0",
"less-file": "0.0.9",
"linify": "*",
"lsr": "^1.0.0",
"marked": "~0.3.3",
"mocha": "*",
"opener": "^1.3.0",
"pull-request": "^3.0.0",
"rimraf": "^2.2.8",
"should": "*",
"stop": "^3.0.0-rc1",
"stylus": "*",
"twbs": "0.0.6",
"uglify-js": "*"
},
"component": {
"scripts": {
"jade": "runtime.js"
}
},
"scripts": {
"test": "mocha -R spec",
"precoverage": "rimraf coverage && rimraf cov-pt*",
"coverage": "istanbul cover --report none --dir cov-pt0 node_modules/mocha/bin/_mocha -- -R dot",
"postcoverage": "istanbul report --include cov-pt\\*/coverage.json && rimraf cov-pt*",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"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/index.js --standalone jade -x ./node_modules/transformers > jade.js",
"compile-runtime": "browserify ./lib/runtime.js --standalone jade > runtime.js"
},
"browser": {
"fs": false,
"./lib/filters.js": "./lib/filters-client.js"
},
"homepage": "http://github.com/jnordberg/jade-legacy"
}