-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.77 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
{
"name": "rdf-object",
"version": "3.0.0",
"description": "Loads RDF as JSON objects",
"keywords": [
"rdf",
"object",
"stream",
"resource",
"rdfjs",
"linked data"
],
"main": "index.js",
"typings": "index",
"repository": "git@github.com:rubensworks/rdf-object.js.git",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/rubensworks/"
},
"bugs": {
"url": "https://github.com/rubensworks/rdf-object.js/issues"
},
"homepage": "https://github.com/rubensworks/rdf-object.js#readme",
"license": "MIT",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map",
"index.d.ts",
"index.js.map",
"index.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@rubensworks/eslint-config": "^1.0.0",
"@types/jest": "^29.0.0",
"@types/n3": "^1.10.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"arrayify-stream": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-es": "^3.24.6",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.0.0",
"jest-rdf": "^2.0.0",
"manual-git-changelog": "^1.0.1",
"n3": "^1.6.3",
"pre-commit": "^1.2.2",
"rdf-quad": "^2.0.0",
"streamify-string": "^1.0.1",
"ts-jest": "^29.0.0",
"typescript": "^5.7.2"
},
"jest": {
"setupFilesAfterEnv": [
"jest-rdf"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"jsonld-context-parser": "^3.0.0",
"rdf-data-factory": "^2.0.1",
"rdf-string": "^2.0.0",
"streamify-array": "^1.0.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}