-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.16 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
{
"name": "@totallyinformation/web-components",
"version": "0.3.0",
"description": "A repository of simple W3C Web Components. These have specific capabilities for use with node-red-contrib-uibuilder but will work independently as well.",
"scripts": {
"build": "node ./libs/build-index.js && node esbuild.config.js",
"test": "npx wrangler pages dev ./ --live-reload: true --show-interactive-dev-session",
"analyse": "npm run analyse1 && npm run analyse2 && npm run vscode-custom && npm run jsdoc",
"watch": "esbuild --watch ./esbuild.config.js",
"lint": "eslint .",
"docs": "docsify serve ./docs",
"edit-docs": "%LOCALAPPDATA%/Programs/Typora/Typora.exe ./",
"analyse1": "npx web-component-analyzer ./src/*.js --format markdown --outDir docs/readme",
"analyse2": "npx web-component-analyzer ./alpha/*.js --format markdown --outDir docs/readme/alpha",
"vscode-custom": "npx web-component-analyzer ./{src,alpha,libs}/*.js --format vscode --outFile ./vscode-descriptors/ti-web-components.html-data.json",
"jsdoc": "npx jsdoc ./src ./alpha -c jsdoc.config.json -r --destination ./docs/jsdoc"
},
"devDependencies": {
"@types/node": "^22.5.5",
"esbuild": "^0.23.1",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.0.0",
"jsdoc": "^4.0.3"
},
"directories": {
"example": "./tests",
"doc": "./docs",
"lib": "./libs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TotallyInformation/web-components.git"
},
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie > 0"
],
"keywords": [
"web-components",
"node-red",
"uibuilder",
"node-red-contrib-uibuilder",
"html",
"javascript",
"web-components-library"
],
"author": "Julian Knight (Totally Information)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TotallyInformation/web-components/issues"
},
"homepage": "https://totallyinformation.github.io/web-components/#/"
}