-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.95 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.95 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
{
"name": "rdf-string",
"version": "2.0.1",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"description": "Convenience functions for creating and serializing RDF terms and quads",
"typings": "index",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/rubensworks/"
},
"homepage": "https://github.com/rubensworks/rdf-string.js#readme",
"repository": "git@github.com:rubensworks/rdf-string.js.git",
"bugs": {
"url": "https://github.com/rubensworks/rdf-string.js/issues"
},
"keywords": [
"rdf",
"rdfjs",
"term",
"quad",
"triple"
],
"main": "index.js",
"files": [
"index.d.ts",
"index.js",
"index.js.map",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map"
],
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint . --cache",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"rdf-data-factory": "^2.0.0"
},
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@rubensworks/eslint-config": "^3.1.0",
"@types/jest": "^30.0.0",
"coveralls": "^3.0.0",
"eslint": "^8.56.0",
"jest": "^30.0.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^6.0.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true
}
}