-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "gulp-xml-transformer",
"version": "8.0.0",
"description": "Gulp plugin for transforming xml content",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint --cache .",
"test": "mocha",
"cover": "c8 npm test"
},
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dotcore64/gulp-xml-transformer.git"
},
"keywords": [
"gulpplugin",
"gulp",
"xml",
"libxmljs"
],
"author": "Julian Grinblat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotcore64/gulp-xml-transformer/issues"
},
"homepage": "https://github.com/dotcore64/gulp-xml-transformer#readme",
"dependencies": {
"arrify": "^3.0.0",
"libxmljs": "^1.0.11",
"plugin-error": "^2.0.1",
"through2": "^4.0.2",
"value-or-function": "^4.0.0",
"vinyl-contents-tostring": "^7.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"c8": "^10.1.3",
"chai": "^4.5.0",
"chai-as-promised": "^8.0.1",
"dirname-filename-esm": "^1.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"mocha": "^11.0.1",
"p-event": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"vinyl": "^3.0.0"
}
}