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
102 lines (102 loc) · 2.72 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.72 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": "@loanlink-nl/cxsd",
"version": "1.0.2",
"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"
},
"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 .",
"fix": "npm run lint && npm run format",
"check": "npm run lint:check && npm run format:check",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"postpublish": "TAG=\"v$(jq -r .version package.json)\" && git commit -am \"Bumped to version $TAG\" && git tag -a $TAG -m \"Published version $TAG\" && git push origin $TAG",
"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": "^13.1.0",
"node-expat": "^2.4.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.11",
"@types/node-expat": "^2.3.5",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.0",
"ts-jest": "^29.2.0",
"typescript": "^5.5.2"
},
"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))$"
},
"publishConfig": {
"@loanlink-nl:registry": "https://npm.pkg.github.com/loanlink-nl"
}
}