-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
55 lines (55 loc) · 1.28 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-ejs",
"version": "5.1.0",
"description": "A plugin for Gulp that parses ejs template files",
"keywords": [
"gulpplugin",
"gulp",
"ejs"
],
"homepage": "https://github.com/rogeriopvl/gulp-ejs",
"bugs": "https://github.com/rogeriopvl/gulp-ejs/issues",
"author": {
"name": "Rogério Vicente",
"email": "",
"url": "https://github.com/rogeriopvl"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/rogeriopvl/gulp-ejs.git"
},
"scripts": {
"lint": "eslint **/*.js",
"lint:fix": "prettier --write index.js test/**/*.js",
"pretest": "npm run lint",
"test": "mocha"
},
"dependencies": {
"ejs": "^3.0.1",
"plugin-error": "^1.0.0",
"through2": "^3.0.1"
},
"devDependencies": {
"eslint": "^6.3.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.1",
"gulp-data": "^1.3.1",
"mocha": "^7.0.0",
"prettier": "^2.0.1",
"vinyl": "^2.2.0"
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rogeriopvl/gulp-ejs/blob/master/LICENSE"
}
]
}