UNPKG

2.57 kBJSONView Raw
1{
2 "name": "@solid/lit-pod",
3 "description": "Make your web apps work with Solid Pods.",
4 "version": "0.0.2-choreldn-review-175884258-498.0",
5 "license": "MIT",
6 "scripts": {
7 "test": "eslint --config .eslintrc.js \"src/**\" && jest",
8 "e2e-test": "jest --config=jest.e2e.config.js",
9 "build": "rollup --config rollup.config.js",
10 "prepublishOnly": "yarn run build",
11 "list-licenses": "license-checker --production --csv --out LICENSE_DEPENDENCIES_ALL",
12 "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\"",
13 "lint": "eslint --config .eslintrc.js --fix"
14 },
15 "keywords": [
16 "rdf",
17 "solid",
18 "linked data",
19 "turtle"
20 ],
21 "homepage": "https://inrupt.github.io/lit-pod/",
22 "bugs": "https://github.com/inrupt/lit-pod/issues",
23 "main": "dist/index.js",
24 "module": "dist/index.es.js",
25 "types": "dist/index.d.ts",
26 "sideEffects": false,
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/inrupt/lit-pod.git"
30 },
31 "devDependencies": {
32 "@types/http-link-header": "^1.0.1",
33 "@types/jest": "^26.0.0",
34 "@typescript-eslint/eslint-plugin": "^2.34.0",
35 "@typescript-eslint/parser": "^2.34.0",
36 "eslint": "^7.2.0",
37 "eslint-plugin-jest": "^23.13.2",
38 "eslint-plugin-license-header": "^0.2.0",
39 "husky": "^4.2.5",
40 "jest": "^26.0.1",
41 "license-checker": "^25.0.1",
42 "lint-staged": "^10.2.9",
43 "prettier": "2.0.5",
44 "rdf-namespaces": "^1.8.0",
45 "rollup": "^2.15.0",
46 "rollup-plugin-typescript2": "^0.27.1",
47 "ts-jest": "^26.1.0",
48 "typedoc": "^0.17.7",
49 "typedoc-plugin-markdown": "^2.3.1",
50 "typescript": "^3.9.5"
51 },
52 "dependencies": {
53 "@rdfjs/dataset": "^1.0.1",
54 "@types/n3": "^1.1.6",
55 "@types/rdf-js": "^3.0.1",
56 "@types/rdfjs__dataset": "^1.0.2",
57 "cross-fetch": "^3.0.4",
58 "http-link-header": "^1.0.2",
59 "n3": "^1.4.0"
60 },
61 "husky": {
62 "hooks": {
63 "pre-commit": "lint-staged"
64 }
65 },
66 "lint-staged": {
67 "*.{js,jsx,ts,tsx}": "eslint --cache --fix",
68 "*.{ts,tsx,js,jsx,css,md,mdx}": "prettier --write"
69 }
70}