mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
0e8feb7ee9
* Reimplement `invertLiterate` without any dependency, tracking indentation levels (including inside lists); update literate test files to also check that no tests are skipped * Drop Literate CoffeeScript’s support for executable code blocks inside list items (and also for second paragraphs or blockquotes in list items) * Update Literate CoffeeScript docs to reflect current supported syntax
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "coffeescript",
|
|
"description": "Unfancy JavaScript",
|
|
"keywords": [
|
|
"javascript",
|
|
"language",
|
|
"coffeescript",
|
|
"compiler"
|
|
],
|
|
"author": "Jeremy Ashkenas",
|
|
"version": "2.0.0-beta1",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=7.6.0"
|
|
},
|
|
"directories": {
|
|
"lib": "./lib/coffeescript"
|
|
},
|
|
"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": "^20170409.0.0",
|
|
"highlight.js": "~9.10.0",
|
|
"jison": ">=0.4.17",
|
|
"markdown-it": "^8.3.1",
|
|
"underscore": "~1.8.3"
|
|
},
|
|
"dependencies": {}
|
|
}
|