-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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": "jade",
"description": "Jade template engine",
"version": "0.31.2",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"repository": "git://github.com/visionmedia/jade",
"main": "./index.js",
"bin": {
"jade": "./bin/jade"
},
"man": "./jade.1",
"dependencies": {
"commander": "1.1.1",
"mkdirp": "0.3.x",
"transformers": "2.0.1",
"character-parser": "1.0.2",
"monocle": "0.1.48",
"with": "~1.1.0"
},
"devDependencies": {
"coffee-script": "*",
"mocha": "*",
"markdown": "*",
"stylus": "*",
"uubench": "*",
"should": "*",
"less": "*",
"uglify-js": "*",
"browserify": "*",
"win-spawn": "*"
},
"component": {
"scripts": {
"jade": "runtime.js"
}
},
"scripts": {
"test": "mocha -R spec",
"prepublish": "npm prune && cd bin && win-line-endings && cd ..",
"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"
}
}