-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.21 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
56
57
58
{
"name": "gulp-append-prepend",
"version": "1.0.9",
"description": "Simple Gulp plugin to append/prepend.",
"types": "./index.d.ts",
"main": "index.js",
"keywords": [
"gulpplugin",
"gulp",
"append",
"prepend",
"insert"
],
"homepage": "https://github.com/NoczCore/gulp-append-prepend",
"author": {
"name": "James Hemery",
"url": "https://github.com/JamesHemery/"
},
"repository": {
"type": "git",
"url": "git://github.com/JamesHemery/gulp-append-prepend.git"
},
"bugs": {
"url": "https://github.com/JamesHemery/gulp-append-prepend/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/JamesHemery/gulp-append-prepend/blob/master/LICENSE"
}
],
"jshintConfig": {
"esversion": 9,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"mocha": true,
"node": true
},
"scripts": {
"pretest": "jshint *.js spec",
"test": "mocha spec/*.js"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"read-file": "^0.2.0",
"through2": "^2.0.1",
"plugin-error": "^1.0.1"
},
"devDependencies": {
"jshint": "^2.10.2",
"mocha": "^5.2.0",
"vinyl": "~2.2.0"
}
}