-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 1.67 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gulp-remove-code",
"version": "3.0.4",
"description": "Remove sections of code from files based on conditions",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha test.js",
"lint": "eslint --max-warnings 0 index.js test.js",
"lint-watch": "esw -w index.js test.js",
"lint-fix": "eslint --fix index.js test.js"
},
"files": [
"index.js"
],
"engines": {
"node": ">=6.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/crissdev/gulp-remove-code.git"
},
"keywords": [
"gulpplugin",
"gulp-plugin",
"gulp",
"remove",
"remove code",
"code",
"strip",
"strip code",
"stream"
],
"author": "crissdev <[email protected]> (https://crissdev.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/crissdev/gulp-remove-code/issues"
},
"homepage": "https://github.com/crissdev/gulp-remove-code",
"dependencies": {
"bufferstreams": "^2.0.1",
"escape-string-regexp": "^1.0.5",
"object.entries": "^1.0.4",
"plugin-error": "^1.0.1",
"through2": "^2.0.3"
},
"devDependencies": {
"concat-stream": "^1.6.2",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-watch": "^4.0.2",
"mocha": "^5.2.0",
"vinyl": "^2.2.0"
},
"eslintConfig": {
"extends": [
"standard"
],
"rules": {
"no-var": "error",
"prefer-const": "error",
"max-len": [
"error",
120
]
},
"env": {
"mocha": true
}
}
}