-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 951 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
{
"name": "gulp-peg",
"version": "0.2.0",
"description": "Gulp plugin for compiling PEG grammars",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec --compilers coffee:coffee-script/register tests/"
},
"repository": {
"type": "git",
"url": "https://github.com/lazutkin/gulp-peg"
},
"keywords": [
"gulpplugin",
"gulp"
],
"author": "Dmitry Lazutkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazutkin/gulp-peg/issues"
},
"homepage": "https://github.com/lazutkin/gulp-peg",
"devDependencies": {
"gulp": "^3.6.2",
"coffee-script": "^1.7.1",
"gulp-changed": "^0.3.0",
"gulp-coffee": "^1.4.2",
"gulp-plumber": "^0.6.1",
"gulp-coffeelint": "^0.3.2",
"mocha": "^1.18.2",
"chai": "^1.9.1",
"vinyl": "^0.2.3"
},
"dependencies": {
"through2": "^0.4.1",
"gulp-util": "^2.2.14",
"pegjs": "^0.9.0"
}
}