-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.11 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
{
"name": "@rmlio/solid-rml-store",
"version": "0.4.0",
"description": "Convert any representation to RDF",
"scripts": {
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore",
"build:ts": "tsc",
"prepare": "npm run build",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/RMLio/solid-rml-store.git"
},
"author": "Friedrich Vandenberghe",
"contributors": [
"Pieter Heyvaert (https://pieterheyvaert.com)"
],
"license": "MIT",
"devDependencies": {
"@solid/community-server": "^6.0.0",
"@tsconfig/node14": "^1.0.1",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/sinon": "^10.0.11",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^8.3.2",
"sinon": "^13.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@rmlio/rmlmapper-java-wrapper": "^2.0.0",
"@types/follow-redirects": "^1.13.0",
"@types/fs-extra": "^9.0.10",
"componentsjs-generator": "^3.1.0",
"follow-redirects": "^1.14.1",
"fs-extra": "^10.0.0",
"human-to-milliseconds": "^2.0.0"
},
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@rmlio/solid-rml-store",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@rmlio/solid-rml-store/^0.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@rmlio/solid-rml-store/^0.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@rmlio/solid-rml-store/^0.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/@rmlio/solid-rml-store/^0.0.0/dist/": "dist/"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"config"
]
}