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
105 lines (105 loc) · 3.19 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.19 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
{
"name": "solid-ui",
"version": "2.0.1",
"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",
"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/ --stripInternal",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"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.6.2",
"@types/node": "^13.7.0",
"escape-html": "^1.0.3",
"jss": "^10.0.3",
"jss-preset-default": "^10.0.3",
"mime-types": "^2.1.24",
"node-uuid": "^1.4.7",
"pane-registry": "^2.0.0",
"rdflib": "^1.0.6",
"solid-auth-client": "^2.3.1",
"solid-auth-tls": "^0.1.2",
"solid-namespace": "^0.3.0",
"ts-jest": "^25.2.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^25.1.1",
"@types/jsdom": "^12.2.4",
"@types/rdflib": "^0.20.1",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-plugin-jest": "^23.7.0",
"husky": "^3.0.9",
"jest": "^25.1.0",
"jsdom": "^16.1.0",
"lint-staged": "^10.0.0-1",
"standard": "^14.3.1",
"typedoc": "^0.16.9",
"typescript": "^3.6.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}