-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
{
"name": "@morfi-technologies/mismo",
"version": "1.0.0",
"description": "Typescript library for working with Mortgage Industry Standards Maintenance Organization (MISMO) files",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "pnpm run build && pnpm test && pnpm run lint",
"preversion": "pnpm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"Mortgage Industry Standards Maintenance Organization",
"MISMO",
"Mortgage",
"MISMO XML",
"MISMO XSD",
"MISMO Validation",
"MISMO Creation",
"MISMO Validator",
"MISMO 3.4",
"MISMO 3.5",
"MISMO 3.6",
"Typescript",
"Node.js",
"JavaScript"
],
"author": "Matthew E. Miller",
"license": "AGPL-3.0-or-later",
"dependencies": {
"libxmljs": "1.0.9"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup": "4.30.1",
"rollup-plugin-copy": "3.5.0",
"ts-jest": "^29.2.5",
"tslib": "2.8.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18 <23"
}
}