forked from SolidOS/solid-panes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "solid-panes",
"version": "2.0.3",
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
"main": "dist/main.js",
"scripts": {
"build": "npm run clean && npm run build-dist",
"build-browserified": "npm run build",
"build-dist": "npm run pre && webpack --progress --colors --mode=production",
"build-dev": "npm run pre && webpack --progress --colors --mode=development",
"watch": "npm run clean && webpack --progress --colors --watch --mode=development",
"clean": "rm -rf dist/",
"lint": "eslint \"**/*.ts\"",
"test-watch": "npm run lint && jest --onlyChanged --watch",
"test": "npm run lint && jest",
"pre": "./timestamp.sh > versionInfo.js"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-panes"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"panes",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-panes/issues"
},
"homepage": "https://github.com/solid/solid-panes",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@fluent/bundle": "^0.14.0",
"@fluent/dom": "^0.6.0",
"@fluent/langneg": "^0.3.0",
"@solid/better-simple-slideshow": "^0.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-metalab": "^1.0.0",
"chat-pane": "^1.3.0",
"contacts-pane": "^1.0.4",
"folder-pane": "^1.1.0",
"issue-pane": "^1.1.0",
"meeting-pane": "^1.1.0",
"mime-types": "^2.1.24",
"pane-registry": "^1.0.4",
"rdflib": "^1.0.6",
"solid-namespace": "^0.2.0",
"solid-ui": "^1.2.4",
"source-pane": "^1.0.3",
"ts-lint": "^4.5.1",
"tslint": "^5.19.0",
"tslint-config-standard": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.18",
"@types/rdflib": "^0.20.1",
"@types/webpack-env": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"jest": "^24.9.0",
"raw-loader": "^3.1.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}