-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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-posthtml",
"version": "3.0.5",
"description": "Gulp PostHTML Plugin",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "nyc ava",
"docs": "jsdoc2md index.js > PLUGIN.md",
"start": "npm run lint && npm test",
"release": "standard-version"
},
"dependencies": {
"plugin-error": "^1.0.1",
"posthtml": "^0.11.6",
"posthtml-load-config": "^1.0.0",
"through2": "^3.0.2"
},
"devDependencies": {
"ava": "^3.9.0",
"jsdoc-to-markdown": "^6.0.1",
"nyc": "^15.1.0",
"posthtml-include": "^1.4.3",
"posthtml-sugarml": "^1.0.0-alpha3",
"snazzy": "^8.0.0",
"standard": "^14.3.4",
"standard-version": "^8.0.0",
"vinyl": "^2.2.0"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"gulp",
"gulpplugin",
"gulp-posthtml"
],
"author": {
"name": "Ivan Voishev",
"email": "[email protected]"
},
"contributors": [
{
"name": "Michael Ciniawsky",
"email": "[email protected]"
}
],
"repository": "https://github.com/posthtml/gulp-posthtml.git",
"bugs": "https://github.com/posthtml/gulp-posthtml/issues",
"homepage": "https://github.com/posthtml/gulp-posthtml#readme",
"license": "MIT"
}