-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.52 KB
/
package.json
File metadata and controls
91 lines (91 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
{
"name": "hed-validator",
"version": "4.1.4",
"description": "A JavaScript validator for HED (Hierarchical Event Descriptor) strings.",
"main": "./dist/commonjs/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/commonjs/index.js"
}
},
"repository": {
"type": "git",
"url": "github:hed-standard/hed-javascript"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "node esbuild.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint ./src/**/*.js",
"test": "jest --testPathPatterns='/tests/'",
"testSpecs": "jest --testPathPatterns='/spec_tests/' --silent --noStackTrace",
"test-types": "npx tsx types/test.ts",
"test-types-local": "node scripts/test-types-local.js",
"test-types-local-windows": "powershell -ExecutionPolicy Bypass -File ./scripts/test-types-local-windows.ps1",
"test-types-local-unix": "sh ./scripts/test-types-local-unix.sh",
"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-javascript/issues"
},
"homepage": "https://github.com/hed-standard/hed-javascript",
"dependencies": {
"core-js-pure": "^3.41.0",
"fast-xml-parser": "^5.2.5",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"semver": "^7.6.0",
"unicode-name": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.0",
"@types/node": "^25.0.2",
"babel-jest": "^30.0.5",
"chai": "^4.3.6",
"esbuild": "^0.25.0",
"esbuild-plugins-node-modules-polyfill": "^1.7.1",
"esbuild-runner": "^2.2.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^17.0.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.2",
"jest-environment-node": "^30.0.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"tsx": "^4.20.3",
"typedoc": "^0.28.0",
"typescript": "^6.0.2"
},
"overrides": {
"glob": "^10.0.0"
},
"browser": {
"fs": false
},
"files": [
"dist/*",
"types/*",
"esbuild.mjs"
]
}