forked from jeff-zucker/solid-file-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.22 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
{
"name": "solid-file-client",
"version": "0.5.2",
"description": "A library for creating and managing files and folders in Solid data stores",
"author": "Jeff Zucker",
"license": "MIT",
"repository": "https://github.com/jeff-zucker/solid-file-client/",
"keywords": [
"Solid",
"Linked Data"
],
"scripts": {
"test": "jest --coverage",
"clean": "rimraf dist coverage",
"prepublish": "./cjs2esm && npm run test && npm run build",
"watch": "babel --watch lib --out-dir js",
"build": "npm run clean && npm run build:window && npm run build:main",
"build:main": "mkdir ./dist/console && cp ./src/* ./dist/console/.",
"build:window": "webpack --config=./webpack/webpack.window.config.js -p"
},
"main": "dist/console/index.js",
"browser": "dist/browser/solid-file-client.bundle.js",
"module": "lib/index.js",
"browserslist": "> 0.25%, not dead",
"dependencies": {
"null-loader": "^2.0.0",
"rdflib": "^0.20.1",
"solid-auth-cli": "^0.2.6",
"solid-auth-client": "^2.3.0"
},
"peerDependencies": {
"@babel/runtime": "^7.2.0",
"solid-auth-client": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0-beta.6",
"build-esm": "^4.2.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.87.0",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"regenerator-runtime": "^0.13.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"rimraf": "^2.6.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}