jashkenas--coffeescript/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2009-12-24 22:41:35 +00:00
{
2017-02-13 01:00:05 +00:00
"name": "coffeescript",
"description": "Unfancy JavaScript",
"keywords": [
"javascript",
"language",
"coffeescript",
"compiler"
],
"author": "Jeremy Ashkenas",
"version": "2.0.0-alpha1",
"license": "MIT",
"engines": {
2016-12-19 07:25:01 +00:00
"node": ">=7.2.1"
},
"directories": {
2017-02-13 01:00:05 +00:00
"lib": "./lib/coffeescript"
},
2017-02-13 01:00:05 +00:00
"main": "./lib/coffeescript/coffeescript",
"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": {
"docco": "~0.7.0",
"google-closure-compiler-js": "^20170124.0.0",
"highlight.js": "~9.9.0",
"jison": ">=0.4.17",
2016-12-11 09:06:11 +00:00
"marked": "^0.3.6",
"underscore": "~1.8.3"
},
"dependencies": {
"marked": "~0.3.6"
}
2009-12-24 22:41:35 +00:00
}