forked from hed-standard/hed-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "hed-validator",
"version": "3.4.0",
"description": "A JavaScript validator for HED (Hierarchical Event Descriptor) strings.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hed-standard/hed-javascript.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./**/*.js",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --coverage"
},
"contributors": [
"Alexander Jones",
"Kay Robbins (http://www.cs.utsa.edu/~krobbins/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hed-standard/hed-javascript/issues"
},
"homepage": "https://github.com/hed-standard/hed-javascript",
"dependencies": {
"date-and-time": "^0.14.2",
"date-fns": "^2.17.0",
"pluralize": "^8.0.0",
"semver": "^7.3.4",
"then-request": "^6.0.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "node"
},
"browser": {
"fs": false
}
}