1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| {
| "name": "coffee-script",
| "description": "Unfancy JavaScript",
| "keywords": [
| "javascript",
| "language",
| "coffeescript",
| "compiler"
| ],
| "author": "Jeremy Ashkenas",
| "version": "1.10.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"
| },
| "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",
| "highlight.js": "~8.0.0",
| "underscore": "~1.5.2",
| "docco": "~0.7.0"
| }
| }
|
|