-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 1.9 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
75
76
77
78
79
80
81
82
83
84
{
"name": "gulp-convert-encoding",
"version": "3.0.0",
"description": "Convert character encodings using iconv-lite.",
"license": "MIT",
"repository": "heldinz/gulp-convert-encoding",
"author": {
"name": "Alice Rose",
"email": "hello@alicerosemurphy.com",
"url": "https://www.alicerosemurphy.com"
},
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": ["dist"],
"engines": {
"node": ">=18"
},
"scripts": {
"compiler": "tsc",
"compiler:check": "npm run compiler -- --noEmit",
"compiler:watch": "npm run compiler -- --watch",
"coverage": "c8 -r lcovonly npm test",
"coverage:text": "c8 npm test",
"formatter": "npm run prettier -- --list-different",
"formatter:fix": "npm run prettier -- --write",
"linter": "eslint '**/*.{js,ts}'",
"linter:fix": "npm run linter -- --fix",
"prettier": "prettier .*rc *.{json,md} ./**/*.{js,ts}",
"test": "ava",
"test:watch": "npm test -- --watch",
"prepare": "husky"
},
"lint-staged": {
".*rc": "prettier --write",
"*.{json,md}": "prettier --write",
"*.{js,ts}": ["eslint --fix", "prettier --write"]
},
"keywords": [
"character encoding",
"character decoding",
"charset",
"convert",
"decoding",
"encoding",
"encodings",
"gulp",
"gulpplugin",
"iconv",
"iconv-lite"
],
"dependencies": {
"gulp-plugin-extras": "1.1.0",
"iconv-lite": "0.6.3"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@tsconfig/node18": "18.2.4",
"@types/eslint__js": "8.42.3",
"@types/node": "22.9.0",
"ava": "6.2.0",
"c8": "10.1.2",
"eslint": "9.14.0",
"globals": "15.12.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"p-event": "6.0.1",
"prettier": "3.3.3",
"sinon": "19.0.2",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vinyl": "3.0.0"
},
"peerDependencies": {
"gulp": ">=5"
},
"peerDependenciesMeta": {
"gulp": {
"optional": true
}
}
}