b5074a88ec
Per discussion with @wycats. Due to the version history of the node package and the manner in which npm's semver implementation works we need to continue the patch numbers utilized previously. Once the upstream implementation moves to 1.1 versioning we can sync the implementations again.
32 lines
685 B
JSON
32 lines
685 B
JSON
{
|
|
"name": "handlebars",
|
|
"description": "Extension of the Mustache logicless template language",
|
|
"version": "1.0.7",
|
|
"homepage": "http://www.handlebarsjs.com/",
|
|
"keywords": [
|
|
"handlebars mustache template html"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/wycats/handlebars.js.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.4.7"
|
|
},
|
|
"dependencies": {
|
|
"optimist": "~0.3",
|
|
"uglify-js": "~1.2"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "*"
|
|
},
|
|
"main": "lib/handlebars.js",
|
|
"bin": {
|
|
"handlebars": "bin/handlebars"
|
|
},
|
|
"scripts": {
|
|
"test": "node_modules/.bin/mocha -u qunit spec/qunit_spec.js"
|
|
},
|
|
"optionalDependencies": {}
|
|
}
|