-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "sparql-transformer",
"version": "3.1.1",
"description": "Transform the SPARQL Endpoint output in JSON or JSON-LD",
"main": "src/node_main.mjs",
"type": "module",
"module": "src/main.mjs",
"browser": "dist/browser.mjs",
"files": [
"**/*.mjs",
"*.js"
],
"repository": "https://github.com/D2KLab/sparql-transformer",
"scripts": {
"test": " DEBUG_LEVEL=debug ava",
"prepublishOnly": "rollup -c",
"postpublish": "git push --follow-tags"
},
"keywords": [
"json-ld",
"sparql",
"converter"
],
"author": "Pasquale Lisena <[email protected]> (http://pasqlisena.github.io/)",
"license": "Apache-2.0",
"ava": {
"require": [
"esm"
]
},
"devDependencies": {
"ava": "^5.2.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"esm": "^3.2.25",
"nock": "^13.3.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-cleanup": "^3.2.1"
},
"dependencies": {
"axios": "^1.3.3",
"fast-deep-equal": "^3.1.3",
"is-valid-path": "^0.1.1",
"jsonfile": "^6.1.0",
"object-assign-deep": "^0.4.0"
}
}