forked from SolidOS/mashlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.58 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.58 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "mashlib",
"version": "1.7.20",
"description": "Data mashup library",
"main": "./index.js",
"files": [
"index.js",
"dist"
],
"scripts": {
"build": "npm run clean && npm run build-version && npm run build-dev && npm run build-dist",
"build-dev": "webpack --progress",
"build-dist": "webpack --progress --mode=production",
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"watch": "npm run build-version && webpack --watch",
"clean": "rm -rf dist",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.ts' --fix",
"test": "npm run lint",
"prepublishOnly": "npm test && npm run build && npm run bundlesize",
"postpublish": "git push origin main --follow-tags",
"bundlesize": "bundlesize"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/mashlib"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"panes",
"linked",
"data",
"browser"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/mashlib/issues"
},
"homepage": "https://github.com/solid/mashlib",
"dependencies": {
"normalize.css": "^8.0.1",
"rdflib": "^2.2.17",
"solid-panes": "^3.5.18",
"solid-ui": "^2.4.16"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"bundlesize": "^0.18.1",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mini-css-extract-plugin": "^1.2.1",
"node-sass": "^6.0.1",
"sass-loader": "^10.2.0",
"solid-auth-cli": "^1.0.15",
"standard": "^16.0.4",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-sources": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint"
]
},
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "2 MB"
},
{
"path": "./dist/*[^.min].js",
"maxSize": "3 MB"
}
]
}