-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.18 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
53
54
55
{
"name": "gulp-yaml",
"version": "2.0.3",
"description": "Convert YAML to JSON",
"main": "index.js",
"scripts": {
"test": "eslint --max-warnings 0 . && mocha"
},
"files": [
"index.js",
"CHANGELOG.md"
],
"engines": {
"node": ">=6.9.5"
},
"keywords": [
"gulpplugin",
"gulp-plugin",
"gulp",
"yaml",
"yml",
"json",
"stream"
],
"repository": {
"type": "git",
"url": "https://github.com/crissdev/gulp-yaml.git"
},
"homepage": "https://github.com/crissdev/gulp-yaml",
"author": {
"name": "Cristian Trifan",
"email": "[email protected]",
"url": "https://crissdev.com"
},
"license": "MIT",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"event-stream": "3.3.4",
"mocha": "^5.2.0",
"vinyl": "^2.2.0"
},
"dependencies": {
"bufferstreams": "^2.0.1",
"js-yaml": "^3.13.1",
"object-assign": "^4.1.1",
"plugin-error": "^1.0.1",
"replace-ext": "^1.0.0",
"through2": "^3.0.0"
}
}