-
-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.59 KB
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
{
"name": "iconv-lite",
"description": "Convert character encodings in pure javascript.",
"version": "1.0.0-alpha.2",
"license": "MIT",
"keywords": [
"iconv",
"convert",
"charset",
"icu"
],
"files": [
"backends/",
"lib/",
"encodings/",
"types/"
],
"author": "Alexander Shtuchkin <ashtuchkin@gmail.com>",
"main": "./lib/index-node.js",
"typings": "./lib/index.d.ts",
"homepage": "https://github.com/pillarjs/iconv-lite",
"bugs": "https://github.com/pillarjs/iconv-lite/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/express"
},
"repository": {
"type": "git",
"url": "https://github.com/pillarjs/iconv-lite.git"
},
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"generate": "npm run generate --workspaces --if-present",
"test": "mocha --reporter spec --check-leaks",
"test:ci": "c8 --check-coverage=false --reporter=none mocha --check-leaks --forbid-only && c8 --no-clean --reporter=lcovonly --reporter=text mocha --require ./test/env/web-backend.js --forbid-only --grep '#node-web'",
"test:cov": "c8 --check-coverage=false --reporter=none mocha --check-leaks && c8 --no-clean --reporter=html --reporter=text mocha --require ./test/env/web-backend.js --grep '#node-web'",
"test:node-web": "mocha --require ./test/env/web-backend.js --grep '#node-web'",
"test:performance": "node --allow-natives-syntax performance/index.js",
"test:typescript": "tsc && attw --pack",
"test:webpack": "npm pack && mv iconv-lite-*.tgz test/webpack/iconv-lite.tgz && cd test/webpack && npm install && npm run test && rm iconv-lite.tgz && rm -r node_modules",
"test:wpt": "node test/wpt/run.js",
"typegen": "node generation/gen-typings.js"
},
"browser": {
"./lib/index-node.js": "./lib/index-web.js",
"stream": false
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@stylistic/eslint-plugin": "^5.1.0",
"@stylistic/eslint-plugin-js": "^4.1.0",
"@types/node": "^24.10.3",
"bench-node": "^0.10.0",
"c8": "^11.0.0",
"eslint": "^9.0.0",
"expect-type": "^1.3.0",
"iconv": "^3.0.1",
"mocha": "^10.8.2",
"neostandard": "^0.12.0",
"unorm": "^1.6.0",
"typescript": "~5.9.3",
"wpt-runner": "^7.0.0"
},
"dependencies": {},
"workspaces": [
"generation"
]
}