-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.44 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
{
"name": "validation-server",
"version": "0.7.3",
"description": "Web service to validate data with support of multiple schema languages",
"repository": {
"type": "git",
"url": "https://github.com/gbv/validation-server.git"
},
"main": "index.js",
"type": "module",
"bin": {
"validate": "./bin/validate.js"
},
"scripts": {
"tmp": "node tmp.js",
"start": "nodemon --ignore formats -e js,ejs server.js",
"update": "node bin/update.js",
"compile": "node bin/compile-schemas.js",
"test": "NODE_ENV=test mocha --exit --timeout 4000",
"debug": "NODE_ENV=debug mocha --exit",
"coverage": "NODE_ENV=debug c8 --skip-full mocha -x lib/compiled-schemas.js --exit --timeout 4000",
"validate": "node bin/validate.js",
"lint": "eslint './**/*.js'",
"fix": "eslint --fix './**/*.js'",
"lint-staged": "standard-readme && lint-staged",
"release": "git checkout dev && git pull && npm test && npm version $SEMVER && git push && git checkout main && git merge dev && git push --follow-tags && git checkout dev",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
],
"*.js": [
"eslint --fix"
]
},
"pre-commit": [
"compile",
"lint-staged",
"test"
],
"author": "Jakob Voß",
"license": "MIT",
"devDependencies": {
"ajv": "^8.9.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.8.0",
"eslint-config-gbv": "^1.0.3",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"mocha-eslint": "^7.0.0",
"moxios": "^0.4.0",
"portfinder": "^1.0.28",
"pre-commit": "^1.2.2",
"standard-readme": "^2.0.4",
"stream-to-array": "^2.3.0"
},
"dependencies": {
"ajv-formats": "^2.1.1",
"ajv-formats-draft2019": "^1.6.1",
"axios": "^0.27.2",
"bytes": "^3.1.2",
"cacache": "^16.1.3",
"ejs": "^3.1.6",
"express": "^4.17.3",
"fast-xml-parser": "^4.0.3",
"get-stdin": "^9.0.0",
"isbn3": "^1.1.26",
"jskos-validate": "^0.5.5",
"json-schema-migrate": "^2.0.0",
"meow": "^10.1.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.15",
"rdf-parse": "^2.1.0",
"streamify-string": "^1.0.1",
"tmp": "^0.2.1",
"yaml": "^2.0.0"
},
"engines": {
"node": ">=14.8.0"
}
}