forked from gulp-community/gulp-json-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "gulp-json-editor",
"version": "2.6.0",
"description": "A gulp plugin to edit JSON objects",
"license": "MIT",
"main": "./index.js",
"homepage": "https://github.com/gulp-community/gulp-json-editor#readme",
"bugs": "https://github.com/gulp-community/gulp-json-editor/issues",
"repository": "https://github.com/gulp-community/gulp-json-editor.git",
"author": {
"name": "gulp-community",
"url": "https://github.com/gulp-community"
},
"dependencies": {
"deepmerge": "^4.3.1",
"detect-indent": "^6.1.0",
"js-beautify": "^1.15.1",
"plugin-error": "^2.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-gulp": "^5.0.1",
"gulp": "^5.0.0",
"mocha": "^10.4.0",
"should": "^13.2.3",
"vinyl": "^3.0.0"
},
"keywords": [
"gulpplugin",
"gulp",
"json"
],
"scripts": {
"eslint": "eslint *.js test/*.js",
"eslint:fix": "eslint --fix *.js test/*.js",
"test": "mocha"
}
}