-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 955 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": "gulp-yml",
"version": "0.1.1",
"description": "Compile YML files",
"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-yml"
},
"keywords": [
"gulpplugin",
"gulp",
"yaml",
"yml"
],
"author": "Dmitry Lazutkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazutkin/gulp-yml/issues"
},
"homepage": "https://github.com/lazutkin/gulp-yml",
"devDependencies": {
"chai": "^1.9.1",
"coffee-script": "^1.7.1",
"gulp": "^3.6.2",
"gulp-changed": "^0.3.0",
"gulp-coffee": "^1.4.2",
"gulp-coffeelint": "^0.3.2",
"gulp-plumber": "^0.6.1",
"mocha": "^1.18.2",
"vinyl": "^0.2.3"
},
"dependencies": {
"js-yaml": "^3.0.2",
"through2": "^0.4.1",
"gulp-util": "^2.2.14"
}
}