-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.32 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
{
"name": "@inrupt/artifact-generator",
"version": "4.0.0",
"description": "A generator for building artifacts (e.g. Java JARs, NPM modules, etc.) from RDF vocabularies.",
"main": "src/index.js",
"bin": {
"artifact-generator": "src/index.js"
},
"scripts": {
"test": "npm run format && npm run lint && jest --forceExit --detectOpenHandles",
"start": "node src/index.js",
"format": "prettier --write \"src/**/*.js\" \"test/resources/**/*.yml\"",
"lint": "eslint src --ext js",
"preversion": "npm test"
},
"author": "Inrupt, Inc.",
"contributors": [
"Jarlath Holleran (https://github.com/jholleran)",
"Pat McBennett (https://github.com/pmcb55)",
"Nicolas Seydoux (https://github.com/NSeydoux)",
"Andy Davidson (contractor with Inrupt)"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/inrupt/artifact-generator.git"
},
"license": "MIT",
"preferGlobal": true,
"keywords": [],
"dependencies": {
"@rdfjs/fetch-lite": "^2.1.2",
"@rdfjs/parser-jsonld": "^1.3.1",
"@rdfjs/parser-n3": "^1.1.4",
"@rdfjs/sink-map": "^1.0.1",
"axios": "^1.5.1",
"chokidar": "4.0.1",
"debug": "^4.3.4",
"del": "^6.1.1",
"glob": "^11.0.0",
"handlebars": "^4.7.7",
"inquirer": "^8.2.5",
"js-yaml": "^4.1.0",
"mock-local-storage": "^1.1.20",
"moment": "^2.29.3",
"rdf-ext": "^1.3.5",
"rdfa-streaming-parser": "^2.0.1",
"rdfxml-streaming-parser": "^2.4.0",
"rimraf": "^6.0.1",
"string-to-stream": "^3.0.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "3.3.3"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/generated/",
"<rootDir>/test/Generated/"
],
"collectCoverage": true,
"coverageReporters": [
"text"
],
"coverageThreshold": {
"global": {
"lines": 95,
"functions": 95,
"statements": 95,
"branches": 95
}
}
},
"bugs": {
"url": "https://github.com/inrupt/artifact-generator/issues"
},
"homepage": "https://github.com/inrupt/artifact-generator#readme",
"directories": {
"test": "test"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || ^18.0.0 || ^20.0.0"
}
}