-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "node-unrtf",
"version": "5.0.4",
"description": "Asynchronous node.js wrapper for the UnRTF RTF conversion program",
"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 <[email protected]>",
"funding": "https://github.com/sponsors/Fdawgs",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"jest": "jest",
"jest:coverage": "jest --coverage",
"lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"lint:licenses": "node scripts/license-checker.js",
"lint:prettier": "prettier . -c -u",
"lint:prettier:fix": "prettier . -w -u",
"prepare": "husky",
"test": "npm run lint && npm run lint:prettier && npm run jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"lcovonly"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node",
"testTimeout": 10000
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/jest": "^29.5.14",
"@types/semver": "^7.5.8",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"glob": "^10.4.5",
"husky": "^9.1.7",
"is-html": "^2.0.0",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "^3.4.2",
"spdx-copyleft": "^1.0.0",
"typescript": "~5.7.3"
},
"dependencies": {
"semver": "^7.6.3",
"upath": "^2.0.1"
}
}