-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.8 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.8 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
78
79
80
81
82
{
"name": "lbdserver-client-api",
"version": "0.0.18",
"description": "",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"prepare": "git stash && npm version patch && git stash pop && npm run build && git add . && git commit -m \"publish new version\" && git push",
"build": "npm-run-all -l clean -p build:esm build:cjs build:bundles declarations",
"clean": "rimraf lib",
"declarations": "tsc -p tsconfig.json",
"build:bundles": "cross-env BABEL_ENV=esmBundled rollup -c",
"build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'lib/esm' --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'lib/cjs' --source-maps",
"copy-assets": "cp node_modules/web-ifc/web-ifc.wasm lib && cp node_modules/web-ifc/web-ifc-mt.wasm lib",
"test": "jest ./tests --detectOpenHandles --forceExit"
},
"keywords": [],
"author": "Jeroen Werbrouck<jeroen.werbrouck@ugent.be>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@ldflex/comunica": "^4.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@types/jest": "^27.0.3",
"@types/jsonld": "^1.5.6",
"@types/meow": "^6.0.0",
"@types/spark-md5": "^3.0.2",
"@types/yargs": "^17.0.7",
"babel-jest": "^27.4.5",
"babel-polyfill": "^6.26.0",
"buffer": "^6.0.3",
"file-api": "^0.10.4",
"jest": "^27.4.5",
"jsonld": "^5.2.0",
"ldflex": "^2.14.0",
"npm": "^8.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@comunica/actor-init-sparql": "^1.22.3",
"@inrupt/solid-client": "^1.17.0",
"@inrupt/solid-client-authn-browser": "^1.11.3",
"@inrupt/solid-client-authn-node": "^1.11.3",
"@inrupt/vocab-common-rdf": "^1.0.3",
"@solid/query-ldflex": "^2.11.3",
"@types/lodash": "^4.14.178",
"jsonld-remote": "github:LBD-Hackers/jsonLD-remote",
"mime-types": "^2.1.34",
"n3": "^1.12.2",
"spark-md5": "^3.0.2",
"url-join-ts": "^1.0.5"
},
"browser": {
"crypto": false,
"path": false,
"fs": false
},
"files": [
"lib/*"
]
}