-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 2.87 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ldbc-snb-enhancer",
"version": "2.5.2",
"description": "Generates auxiliary data based on an LDBC SNB dataset",
"keywords": [
"rdf",
"rdfjs",
"dataset",
"ldbc",
"snb",
"social network"
],
"main": "index.js",
"typings": "index",
"repository": "git@github.com:SolidBench/ldbc-snb-enhancer.js.git",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"bugs": {
"url": "https://github.com/SolidBench/ldbc-snb-enhancer.js/issues"
},
"homepage": "https://github.com/SolidBench/ldbc-snb-enhancer.js#readme",
"bin": {
"ldbc-snb-enhancer": "bin/runner.js"
},
"license": "MIT",
"lsd:module": true,
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"bin/**/*.js.map",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json",
"lib/**/*.js.map",
"index.d.ts",
"index.js.map",
"index.js",
"components"
],
"engines": {
"node": ">=12.0"
},
"dependencies": {
"@rdfjs/types": "*",
"componentsjs": "^5.0.1",
"rdf-object": "^1.13.1",
"rdf-parse": "^2.3.2",
"rdf-serialize": "^2.2.2",
"rdf-string": "^1.6.0",
"rdf-terms": "^1.8.2",
"relative-to-absolute-iri": "^1.0.6"
},
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@rubensworks/eslint-config": "^1.0.1",
"@types/jest": "^28.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"arrayify-stream": "^1.0.0",
"componentsjs-generator": "^3.0.3",
"eslint": "^7.9.0",
"eslint-config-es": "3.23.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^25.0.0",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.0.0",
"jest-rdf": "^1.8.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"rdf-data-factory": "^1.1.0",
"stream-to-string": "^1.2.0",
"streamify-array": "^1.0.1",
"streamify-string": "^1.0.1",
"ts-jest": "^28.0.0",
"typescript": "^4.6.4"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\-test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"lint": "eslint . --ext .ts --cache",
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s lib",
"build:ts": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
}
}