forked from pugjs/pug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "jade",
"description": "Jade template engine",
"version": "0.35.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"repository": "git://github.com/visionmedia/jade",
"main": "./index.js",
"bin": {
"jade": "./bin/jade.js"
},
"man": "./jade.1",
"dependencies": {
"commander": "2.0.0",
"mkdirp": "~0.3.5",
"transformers": "2.1.0",
"character-parser": "1.2.0",
"monocle": "1.1.50",
"with": "~2.0.0",
"constantinople": "~1.0.2"
},
"devDependencies": {
"coffee-script": "*",
"mocha": "*",
"markdown": "*",
"stylus": "*",
"uubench": "*",
"should": "*",
"less": "*",
"uglify-js": "*",
"browserify": "*",
"linify": "*"
},
"component": {
"scripts": {
"jade": "runtime.js"
}
},
"scripts": {
"test": "mocha -R spec",
"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"
}
}