forked from js2coffee/js2coffee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
{
"name": "js2coffee",
"version": "2.2.0",
"description": "JavaScript to CoffeeScript compiler",
"homepage": "http://js2.coffee",
"main": "dist/js2coffee.js",
"keywords": [
"javascript",
"coffeescript",
"language",
"compiler"
],
"scripts": {
"test": "mocha",
"autotest": "mocha -R min -b --watch",
"prepublish": "mocha >/dev/null && make -B dist"
},
"author": "Rico Sta. Cruz <hi@ricostacruz.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/js2coffee/js2coffee/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/js2coffee/js2coffee.git"
},
"browser": "js2coffee.coffee",
"bin": {
"js2coffee": "./bin/js2coffee"
},
"dependencies": {
"escodegen": "^1.6.0",
"esprima": "^2.5.0",
"estraverse": "^4.1.1",
"minimist": "^1.1.0",
"read-input": "^0.3.1",
"source-map": "^0.5.2"
},
"devDependencies": {
"browserify": "13.0.0",
"chai": "^3.4.0",
"coffee-script": "^1.8.0",
"coffeeify": "^2.0.1",
"coffeelint": "^1.6.0",
"glob": "^7.0.0",
"js-yaml": "^3.2.1",
"mocha": "^2.1.0",
"mocha-clean": "^1.0.0",
"uglify-js": "^2.4.16",
"underscore": "^1.7.0"
}
}