forked from wikipathways/cxsd
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.52 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.52 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
{
"name": "@loanlink-nl/cxsd",
"version": "2.2.0",
"description": "Streaming XSD parser and XML parser generator with TypeScript output",
"author": "LoanLink",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/loanlink-nl/cxsd.git"
},
"bugs": {
"url": "https://github.com/loanlink-nl/cxsd/issues"
},
"homepage": "https://github.com/loanlink-nl/cxsd#readme",
"main": "./dist/schema.js",
"typings": "./dist/schema.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.build.json",
"release": "np",
"lint": "eslint --fix . --max-warnings 0",
"lint:check": "eslint . --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"fix": "npm run lint && npm run format",
"check": "npm run lint:check && npm run format:check",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"pretest": "npm run build",
"test": "jest"
},
"bin": {
"cxsd": "bin/cxsd.js"
},
"files": [
"dist",
"bin"
],
"keywords": [
"xsd",
"dts",
"xml",
"schema",
"parser",
"typescript"
],
"dependencies": {
"@loanlink-nl/cget": "^1.0.1",
"@loanlink-nl/cxml": "^1.0.2",
"commander": "^14.0.0",
"node-expat": "^2.4.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/compat": "2.0.0",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@types/jest": "30.0.0",
"@types/node": "24.10.4",
"@types/node-expat": "2.3.5",
"@types/source-map-support": "0.5.10",
"@typescript-eslint/eslint-plugin": "8.51.0",
"@typescript-eslint/parser": "8.51.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"globals": "16.5.0",
"jest": "30.2.0",
"mkdirp": "3.0.1",
"npm-run-all2": "8.0.4",
"prettier": "3.7.4",
"rimraf": "6.1.2",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"transform": {
"\\.(ts)$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/(node_modules)/",
"<rootDir>/(dist)/"
],
"transformIgnorePatterns": [
"<rootDir>/(node_modules)/",
"<rootDir>/(dist)/"
],
"testRegex": "(/(src|test)/.*\\.test\\.(ts|js))$"
}
}