forked from alexwarth/ometa-js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 894 Bytes
/
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
{
"name": "metacoffee",
"version": "0.4.0",
"description": "Top-down parser generator for CoffeeScript",
"author": "xixixao",
"keywords": [
"parser",
"top-down",
"CoffeeScript",
"compiler",
"meta",
"whitespace"
],
"repository": {
"type": "git",
"url": "git://github.com/xixixao/meta-coffee.git"
},
"bin": {
"metacoffee": "./bin/metacoffee"
},
"main": "./lib/metacoffee",
"dependencies": {
"coffee-script": "~1.6.0",
"js-beautify": "~1.4.2",
"mkdirp": "^0.5.0"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-coffee": "~0.6.0",
"grunt-cli": "~0.1.6",
"grunt-urequire": "~0.6.0"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=0.4.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true
}
}