mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
49 lines
1.2 KiB
JSON
Executable File
49 lines
1.2 KiB
JSON
Executable File
{
|
|
"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.0.4"
|
|
},
|
|
"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"
|
|
}
|
|
}
|