-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
74 lines (74 loc) · 2.53 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
{
"name": "@solid/query-ldflex",
"version": "2.11.3",
"description": "Access Solid data pods using the LDflex language",
"author": "Ruben Verborgh <[email protected]> (https://ruben.verborgh.org/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solid/query-ldflex/"
},
"main": "lib/exports/comunica.js",
"module": "module/exports/comunica.js",
"sideEffects": false,
"files": [
"src",
"lib",
"module",
"dist",
"!dist/demo",
"browser",
"webpack",
".babelrc"
],
"dependencies": {
"@ldflex/comunica": "^3.4.2",
"@rdfjs/data-model": "^1.1.2",
"@solid/context": "^1.1.0",
"ldflex": "^2.11.1",
"solid-auth-client": "^2.4.1",
"uuid": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@ldflex/rdflib": "^1.0.0",
"@pollyjs/adapter-node-http": "^4.1.0",
"@pollyjs/core": "^4.1.0",
"@pollyjs/persister-fs": "^4.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-inline-import": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"readable-stream": "^3.6.0",
"setup-polly-jest": "^0.7.0",
"solid-auth-cli": "^1.0.15",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"build": "npm run build:lib && npm run build:module && npm run build:dist && npm run build:demo",
"build:demo": "webpack --mode=production --config=./webpack/webpack.demo.config.js",
"build:dist": "npm run build:dist:clean && npm run build:dist:comunica && npm run build:dist:rdflib",
"build:dist:clean": "rm -rf ./dist",
"build:dist:comunica": "webpack --mode=production --config=./webpack/webpack.lib.config.js",
"build:dist:rdflib": "webpack --mode=production --config=./webpack/webpack.rdflib.config.js",
"build:lib": "babel src --out-dir lib --delete-dir-on-start --copy-files",
"build:module": "babel src --env-name module --delete-dir-on-start --out-dir module",
"jest": "jest",
"lint": "eslint src test demo webpack",
"precommit": "npm test",
"prepublishOnly": "npm ci && npm run build",
"start": "npm run start:demo",
"start:demo": "webpack-dev-server --config=./webpack/webpack.demo.config.js",
"test": "npm run lint && npm run jest",
"test:dev": "npm run jest -- --watch"
}
}