jashkenas--coffeescript/package.json

49 lines
1023 B
JSON
Raw Normal View History

2009-12-24 22:41:35 +00:00
{
"name": "coffee-script",
"description": "Unfancy JavaScript",
"keywords": [
"javascript",
"language",
"coffeescript",
"compiler"
],
"author": "Jeremy Ashkenas",
2016-09-22 20:19:43 +00:00
"version": "1.11.0",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib/coffee-script"
},
"main": "./lib/coffee-script/coffee-script",
"bin": {
"coffee": "./bin/coffee",
"cake": "./bin/cake"
},
"files": [
"bin",
"lib",
"register.js",
"repl.js"
],
"preferGlobal": true,
"scripts": {
"test": "node ./bin/cake test",
"test-harmony": "node --harmony ./bin/cake test"
},
"homepage": "http://coffeescript.org",
"bugs": "https://github.com/jashkenas/coffeescript/issues",
"repository": {
"type": "git",
"url": "git://github.com/jashkenas/coffeescript.git"
},
"devDependencies": {
"uglify-js": "~2.2",
"jison": ">=0.2.0",
2016-09-18 18:54:44 +00:00
"highlight.js": "~9.6.0",
"underscore": "~1.5.2",
2015-02-03 16:31:43 +00:00
"docco": "~0.7.0"
}
2009-12-24 22:41:35 +00:00
}