-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.21 KB
/
package.json
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": "3.15.5",
"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": "https://github.com/hed-standard/hed-javascript.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node esbuild.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint ./**/*.js",
"test": "jest --testPathIgnorePatterns=spec_tests",
"testSpecs": "jest --silent --noStackTrace spec_tests/jsonTests.spec.js",
"coverage": "jest --coverage --testPathIgnorePatterns=spec_tests/*",
"prepare": "husky install"
},
"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": {
"buffer": "^6.0.3",
"cross-fetch": "^4.0.0",
"date-and-time": "^3.1.1",
"date-fns": "^3.6.0",
"events": "^3.3.0",
"lodash": "^4.17.21",
"path": "^0.12.7",
"pluralize": "^8.0.0",
"semver": "^7.6.0",
"string_decoder": "^1.3.0",
"unicode-name": "^1.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"chai": "^4.3.6",
"esbuild": "^0.20.2",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-runner": "^2.2.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "node",
"transform": {
"\\.js$": "esbuild-runner/jest",
"\\.xml$": "<rootDir>/fileTransformer.js"
},
"transformIgnorePatterns": [
"node_modules/(?!unicode-name)"
]
},
"browser": {
"fs": false
},
"files": [
"dist/*"
]
}