forked from LDflex/Query-Solid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.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
{
"name": "@solid/query-ldflex",
"version": "2.5.1",
"description": "Access Solid data pods using the LDflex language",
"author": "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solid/query-ldflex/"
},
"main": "lib/index.js",
"files": [
"src",
"lib",
"dist",
"!dist/demo"
],
"dependencies": {
"@rdfjs/data-model": "^1.1.1",
"ldflex": "git+https://git@github.com/HappyDev-team/ldflex.git",
"ldflex-comunica": "^3.0.0",
"solid-auth-client": "^2.2.14",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-plugin-inline-import": "^3.0.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.6.0",
"eslint-plugin-jest": "^21.22.0",
"husky": "^1.1.2",
"jest": "^24.3.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"build": "npm run build:lib && npm run build:dist && npm run build:demo",
"build:demo": "webpack --config=./webpack/webpack.demo.config.js",
"build:dist": "webpack --mode=production --config=./webpack/webpack.lib.config.js",
"build:lib": "babel src --out-dir lib --copy-files",
"jest": "jest",
"lint": "eslint src test demo webpack",
"precommit": "npm test",
"prepublishOnly": "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"
}
}