forked from inrupt/solid-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.5 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
{
"name": "@inrupt/solid-client",
"description": "Make your web apps work with Solid Pods.",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"test": "eslint --config .eslintrc.js \"src/**\" && jest",
"e2e-test": "jest --config=jest.e2e.config.js",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "yarn run build",
"list-licenses": "license-checker --production --csv --out LICENSE_DEPENDENCIES_ALL",
"check-licenses": "license-checker --production --failOn \"AGPL-1.0-only; AGPL-1.0-or-later; AGPL-3.0-only; AGPL-3.0-or-later; Beerware; CC-BY-NC-1.0; CC-BY-NC-2.0; CC-BY-NC-2.5; CC-BY-NC-3.0; CC-BY-NC-4.0; CC-BY-NC-ND-1.0; CC-BY-NC-ND-2.0; CC-BY-NC-ND-2.5; CC-BY-NC-ND-3.0; CC-BY-NC-ND-4.0; CC-BY-NC-SA-1.0; CC-BY-NC-SA-2.0; CC-BY-NC-SA-2.5; CC-BY-NC-SA-3.0; CC-BY-NC-SA-4.0; CPAL-1.0; EUPL-1.0; EUPL-1.1; EUPL-1.1; GPL-1.0-only; GPL-1.0-or-later; GPL-2.0-only; GPL-2.0-or-later; GPL-3.0; GPL-3.0-only; GPL-3.0-or-later; SISSL; SISSL-1.2; WTFPL\"",
"lint": "eslint --config .eslintrc.js --fix"
},
"keywords": [
"rdf",
"solid",
"linked data",
"turtle"
],
"homepage": "https://inrupt.github.io/solid-client-js/",
"bugs": "https://github.com/inrupt/solid-client-js/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/inrupt/solid-client-js.git"
},
"devDependencies": {
"@types/http-link-header": "^1.0.1",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.2.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-license-header": "^0.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"license-checker": "^25.0.1",
"lint-staged": "^10.2.9",
"prettier": "2.0.5",
"rdf-namespaces": "^1.8.0",
"rollup": "^2.15.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.9.5"
},
"dependencies": {
"@rdfjs/dataset": "^1.0.1",
"@types/n3": "^1.1.6",
"@types/rdf-js": "^3.0.1",
"@types/rdfjs__dataset": "^1.0.2",
"cross-fetch": "^3.0.4",
"http-link-header": "^1.0.2",
"n3": "^1.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,css,md,mdx}": "prettier --write"
}
}