-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
97 lines (97 loc) · 2.52 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
89
90
91
92
93
94
95
96
97
{
"name": "mashlib",
"version": "1.10.2",
"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": "npm rebuild iltorb && bundlesize",
"startStaticOS": "webpack serve --config webpack.config.js --open /browse.html"
},
"repository": {
"type": "git",
"url": "https://github.com/solidos/mashlib"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"panes",
"linked",
"data",
"browser"
],
"author": "Tim Berners-Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/mashlib/issues"
},
"homepage": "https://github.com/solidos/mashlib",
"dependencies": {
"rdflib": "^2.2.34",
"solid-panes": "^3.6.1"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.1.3",
"bundlesize": "^0.18.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"mini-css-extract-plugin": "^2.8.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"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"
}
]
}