-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "gulp-mustache",
"version": "5.0.0",
"description": "A plugin for Gulp that renders mustache templates into html",
"keywords": [
"gulpplugin",
"gulp",
"mustache"
],
"homepage": "https://github.com/rogeriopvl/gulp-mustache",
"bugs": "https://github.com/rogeriopvl/gulp-mustache/issues",
"author": {
"name": "Rogério Vicente",
"email": "",
"url": "https://github.com/rogeriopvl"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/rogeriopvl/gulp-mustache.git"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "prettier --write **/*",
"test": "npm run lint && mocha"
},
"dependencies": {
"escape-string-regexp": "^2.0.0",
"mustache": "^4.0.1",
"plugin-error": "^1.0.0",
"replace-ext": "^1.0.0",
"through2": "^3.0.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^7.0.0",
"prettier": "^2.0.1",
"should": "^13.2.3",
"vinyl": "^2.2.0"
},
"engines": {
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT"
}
]
}