mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
* Get rid of offcanvas slide-in; fix sidebar * We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up * Fix some tabs * Fix scrollbar * Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can * Improve hash management * Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup * Replace highlight.js with Prism for placeholder syntax highlighting * Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting * Update packages; there’s a new version of Jison! (doesn’t change much) * Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them * Update docs output * Whoops, CodeMirror is only a devDependency
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "coffeescript",
|
|
"description": "Unfancy JavaScript",
|
|
"keywords": [
|
|
"javascript",
|
|
"language",
|
|
"coffeescript",
|
|
"compiler"
|
|
],
|
|
"author": "Jeremy Ashkenas",
|
|
"version": "2.0.0-beta5",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"directories": {
|
|
"lib": "./lib/coffeescript"
|
|
},
|
|
"main": "./lib/coffeescript/index",
|
|
"browser": "./lib/coffeescript/browser",
|
|
"bin": {
|
|
"coffee": "./bin/coffee",
|
|
"cake": "./bin/cake"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"register.js",
|
|
"repl.js"
|
|
],
|
|
"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": {
|
|
"babel-core": "~6.26.0",
|
|
"babel-preset-babili": "~0.1.4",
|
|
"babel-preset-env": "~1.6.0",
|
|
"babili": "^0.1.4",
|
|
"codemirror": "^5.29.0",
|
|
"docco": "~0.7.0",
|
|
"highlight.js": "~9.12.0",
|
|
"jison": ">=0.4.18",
|
|
"markdown-it": "~8.4.0",
|
|
"underscore": "~1.8.3",
|
|
"webpack": "~3.5.6"
|
|
},
|
|
"dependencies": {}
|
|
}
|