-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "gulp-file-include",
"version": "2.3.0",
"description": "A gulp plugin for file include",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib test/*.js --fix",
"test": "mocha -R spec -t 200 test/*.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -R dot -t 200 test/*.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 200 test/*.js"
},
"repository": "haoxins/gulp-file-include",
"keywords": [
"gulpplugin",
"file",
"include",
"replace",
"gulp",
"plugin"
],
"files": [
"lib"
],
"author": "haoxin",
"contributors": [
"Bogdan Chadkin <trysound@yandex.ru>",
"Arthur Araújo <webarthur@gmail.com>"
],
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-stream": "^2.0.0",
"extend": "^3.0.2",
"flatnest": "^1.0.0",
"json5": "^2.1.3",
"plugin-error": "^1.0.1",
"through2": "^4.0.2",
"vinyl": "^2.2.1"
},
"devDependencies": {
"eslint-config-ok": "github:haoxins/eslint-config",
"gulp": "^4.0.2",
"istanbul": "^0.4.5",
"markdown": "^0.5.0",
"mocha": "^8.2.1",
"should": "^13.2.3"
},
"eslintConfig": {
"extends": [
"ok"
]
}
}