-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·88 lines (88 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "solid-file-client",
"version": "2.1.11",
"description": "A library for creating and managing files and folders in Solid data stores",
"author": "Jeff Zucker",
"maintainer": "Alain Bourgeois",
"license": "MIT",
"repository": "https://github.com/jeff-zucker/solid-file-client/",
"keywords": [
"Solid",
"Linked Data"
],
"engines": {
"node": ">=12"
},
"engine-strict": true,
"scripts": {
"test": "rm -rf test-folder; npm run test:file -- --coverage",
"test:file": "cross-env TEST_PREFIX=file:// jest",
"test:https": "cross-env TEST_PREFIX=https:// jest",
"test:watch": "npm run test:file -- --watch",
"test:all": "npm run test:file && npm run test:https",
"test:travis": "jest",
"prepublishOnlyOLD": "npm run build && npm run test:file",
"prepublishOnly": "npm run build",
"build": "webpack",
"build:dev": "webpack --mode development --watch",
"build:doc-api": "jsdoc2md src/*.js > docs/JSdoc/api.md",
"build:doc-aclparser": "jsdoc2md src/utils/aclParser.js > docs/JSdoc/aclParser.md",
"build:doc-rdf-query": "jsdoc2md src/utils/rdf-query.js > docs/JSdoc/rdf-query.md",
"build:docs": "npm run build:doc-api && npm run build:doc-aclparser && npm run build:doc-rdf-query",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\"",
"lint:fix": "npm run lint -- --fix"
},
"main": "dist/node/solid-file-client.bundle.js",
"browser": "dist/window/solid-file-client.bundle.js",
"module": "src/index.js",
"browserslist": [
"> 0.25%",
"not dead"
],
"standard": {
"globals": [
"jest",
"test",
"describe",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach",
"expect"
]
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"browserfs": "^1.4.3",
"concat-stream": "^2.0.0",
"core-js": "^3.6.1",
"cross-env": "^7.0.2",
"cross-fetch": "^3.1.5",
"debug": "^4.1.1",
"fs-extra": "^9.0.1",
"jest": "^25.4.0",
"jsdoc-to-markdown": "^5.0.3",
"mime-types": "^2.1.27",
"rdflib": "^2.2.6",
"regenerator-runtime": "^0.13.3",
"solid-node-client": "^2.1.19",
"standard": "^14.3.3",
"uuid": "^8.3.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"dotenv": "^16.0.0",
"jszip": "^3.7.1",
"mime": "2.5.2",
"n3": "^1.9.0",
"solid-namespace": "^0.5.0"
}
}