forked from wikipathways/cxml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.35 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.35 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
{
"name": "@loanlink-nl/cxml",
"version": "1.0.2",
"description": "Advanced schema-aware streaming XML parser",
"author": "Loanlink",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/loanlink-nl/cxml.git"
},
"bugs": {
"url": "https://github.com/loanlink-nl/cxml/issues"
},
"homepage": "https://github.com/loanlink-nl/cxml#readme",
"main": "dist/cxml.js",
"types": "dist/cxml.d.ts",
"files": [
"dist/**"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm-run-all build:*",
"build:clean": "rimraf ./dist",
"build:typescript": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm i --package-lock-only && npm run test",
"test": "npm-run-all test:* && rimraf ./test/**/*.js",
"test:build": "npm-run-all test:build:*",
"test:build:clean": "cd test && mkdirp cache && rimraf cache && mkdirp xmlns && rimraf xmlns && cd .."
},
"keywords": [
"xml",
"streaming",
"schema",
"parser",
"xsd",
"dts",
"typescript"
],
"dependencies": {
"lodash": "^4.17.15",
"sax": "^1.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.0",
"@types/sax": "^1.2.7",
"@types/source-map-support": "^0.5.10",
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"npm-run-all2": "^7.0.1",
"pegjs": "^0.10.0",
"rimraf": "^6.0.0",
"source-map-support": "^0.5.16",
"ts-jest": "^29.3.0",
"typescript": "^5.8.2"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/(node_modules)/"
],
"transformIgnorePatterns": [
"<rootDir>/(node_modules)/"
],
"testRegex": "((/src/.*\\.test\\.(ts|tsx|js))|(/test/spec/.*\\.(js|jsx)))$"
},
"jestts": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testEnvironment": "node",
"transform": {
"\\.(ts|tsx|.js|.jsx)$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/(node_modules)/"
],
"transformIgnorePatterns": [
"<rootDir>/(node_modules)/"
],
"testRegex": "((/src/.*\\.test\\.(ts|tsx|js))|(/test/spec/.*\\.(ts|tsx|js)))$"
},
"publishConfig": {
"@loanlink-nl:registry": "https://npm.pkg.github.com/loanlink-nl"
}
}