-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1008 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
{
"name": "pegcoffee",
"version": "0.1.0",
"description": "A PEG.js plugin for using CoffeeScript with the post-0.7 pegjs plugin API",
"main": "lib/pegcoffee.js",
"bin": "bin/pegcoffee",
"repository": {
"type": "git",
"url": "git://github.com/ttilley/pegcoffee.git"
},
"keywords": [
"peg",
"pegjs",
"coffee",
"coffeescript",
"plugin"
],
"scripts": {
"test": "node_modules/.bin/grunt test"
},
"author": "Travis Tilley",
"license": "BSD",
"engines": {
"node": ">= 0.8"
},
"dependencies": {
"pegjs": "git://github.com/dmajda/pegjs.git#master",
"coffee-script": "git://github.com/jashkenas/coffee-script.git#master"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-markdown": "~0.2.0",
"grunt-coffee-redux": "~0.2.3",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-jshint": "~0.4.3",
"grunt-contrib-watch": "~0.3.1",
"grunt-mocha-cli": "~1.0.6",
"should": "~1.2.2"
}
}