-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.3 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
{
"name": "hed-validator",
"version": "4.1.4",
"description": "A JavaScript validator for HED (Hierarchical Event Descriptor) strings.",
"main": "./dist/commonjs/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/commonjs/index.js"
}
},
"repository": {
"type": "git",
"url": "github:hed-standard/hed-typescript"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "node esbuild.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint",
"test": "jest --testPathPatterns='/tests/'",
"testSpecs": "jest --testPathPatterns='/spec_tests/' --silent --noStackTrace",
"type-check": "tsc --noEmit",
"coverage": "jest --coverage",
"prepare": "husky",
"docs": "typedoc --options typedoc.json",
"clear_jest_cache": "jest --clearCache"
},
"contributors": [
"Alexander Jones",
"Kay Robbins"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hed-standard/hed-typescript/issues"
},
"homepage": "https://github.com/hed-standard/hed-typescript",
"dependencies": {
"fast-xml-parser": "^5.5.8",
"lodash": "^4.17.23",
"pluralize": "^8.0.0",
"semver": "^7.7.4",
"unicode-name": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^26.0.1",
"@types/pluralize": "^0.0.33",
"@types/semver": "^7.7.1",
"@types/unicode-name": "^1.1.0",
"babel-jest": "^30.2.0",
"chai": "^4.5.0",
"esbuild": "^0.25.12",
"esbuild-plugins-node-modules-polyfill": "^1.8.1",
"esbuild-runner": "^2.2.2",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-node": "^30.0.0",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.1"
},
"overrides": {
"glob": "^10.0.0"
},
"browser": {
"fs": false
},
"files": [
"dist/*",
"esbuild.mjs"
]
}