-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.3 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "node-unrtf",
"version": "7.1.0",
"description": "Asynchronous Node.js wrapper for the UnRTF conversion utility",
"keywords": [
"async",
"converter",
"html",
"latex",
"ps",
"rtf",
"rtf-converter",
"rtf-to-html",
"rtf-to-latex",
"rtf-to-ps",
"rtf-to-text",
"rtf-to-wpml",
"text",
"txt",
"unrtf",
"wpml"
],
"main": "src/index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Fdawgs/node-unrtf.git"
},
"homepage": "https://github.com/Fdawgs/node-unrtf",
"bugs": {
"url": "https://github.com/Fdawgs/node-unrtf/issues"
},
"license": "MIT",
"author": "Frazer Smith <frazer.dev@icloud.com>",
"funding": "https://github.com/sponsors/Fdawgs",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:eslint": "eslint . --cache",
"lint:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:licenses": "licensee --errors-only --production",
"lint:prettier:fix": "prettier . -w -u",
"lint:prettier": "prettier . -c -u",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:licenses",
"test:unit:coverage": "jest --coverage",
"test:unit": "jest",
"test": "npm run lint && npm run test:unit",
"typecheck": "tsc"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"lcovonly"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"injectGlobals": false,
"testEnvironment": "node",
"testTimeout": 10000
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^2.0.0",
"@fdawgs/eslint-config": "^2.0.0",
"@jest/globals": "^30.0.5",
"@types/node": "^25.0.3",
"@types/semver": "^7.7.0",
"eslint": "^9.31.0",
"eslint-plugin-jest": "^29.0.1",
"glob": "^13.0.0",
"jest": "^30.0.5",
"licensee": "^12.0.1",
"prettier": "^3.6.2",
"typescript": "~5.9.2"
},
"dependencies": {
"ice-barrage": "^1.0.0",
"semver": "^7.7.2"
},
"optionalDependencies": {
"node-unrtf-win32": "^1.0.0"
}
}