forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.9 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.9 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "solid-ui",
"version": "2.4.8",
"description": "UI library for writing Solid read-write-web applications",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types && npm run build-webpack && npm run build-storybook",
"build-lib": "babel src -d lib --source-maps --extensions \".ts,.js\"",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint \"src/versionInfo.ts\" --fix",
"build-webpack": "webpack",
"watch": "npm run build-version && babel src --out-dir lib --watch --source-maps --extensions \".ts,.js\"",
"clean": "rm -rf lib",
"coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
"lint": "eslint \"src/**/*.js\" \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-fix": "eslint \"src/**/*.js\" \"src/**/*.ts\" --fix",
"jest": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test": "npm run build && npm run lint && npm run jest",
"doc": "typedoc --out ./Documentation/api/ ./src/ --excludeInternal",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push origin main --follow-tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir ./examples/storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-ui"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"contributors": [
"Daniel Friedman <danielf@mit.edu>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-ui/issues"
},
"homepage": "https://github.com/solid/solid-ui",
"dependencies": {
"@babel/runtime": "^7.14.0",
"crypto-browserify": "^3.12.0",
"escape-html": "^1.0.3",
"jss": "^10.6.0",
"jss-preset-default": "^10.6.0",
"mime-types": "^2.1.31",
"pane-registry": "^2.4.2",
"path-browserify": "^1.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"rdflib": "^2.2.6",
"solid-auth-client": "^2.5.6",
"solid-logic": "^1.3.6",
"solid-namespace": "^0.5.1",
"stream-browserify": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/addon-links": "^6.1.15",
"@storybook/html": "^6.1.20",
"@testing-library/dom": "^7.31.0",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.20",
"@types/jsdom": "^16.2.6",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"eslint": "^7.18.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"lint-staged": "^10.5.3",
"nock": "^13.0.11",
"postcss-flexbugs-fixes": "^5.0.2",
"raw-loader": "^4.0.2",
"react-is": "^17.0.1",
"solid-auth-cli": "^1.0.15",
"standard": "^16.0.3",
"ts-jest": "^26.4.4",
"typedoc": "^0.21.1",
"typescript": "^4.3.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}