-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.72 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.72 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
{
"name": "@userwidgets/ui",
"version": "0.8.52",
"description": "The userwidgets app ui.",
"private": false,
"repository": "https://github.com/userwidgets/ui",
"bugs": {
"url": "https://github.com/userwidgets/ui/issues"
},
"homepage": "https://github.com/userwidgets/ui",
"main": "dist/index.cjs.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/userwidgets/userwidgets.esm.js",
"exports": {
".": {
"import": "./dist/userwidgets/userwidgets.esm.js",
"require": "./dist/userwidgets/userwidgets.cjs.js"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"files": [
"dist/",
"loader/"
],
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(cryptly|authly|isoly|gracely|cloudly-http|cloudly-router|cloudly-formdata|urlpattern-polyfill)/.*)"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json",
"setTimeout": 2000
}
},
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"lint": "eslint '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"clean": "rimraf dist node_modules coverage",
"test": "npm run build && node --experimental-vm-modules node_modules/.bin/jest --maxWorkers=2",
"transpile": "tsc --project tsconfig.test.json",
"test:watch": "watch jest",
"build": "stencil build",
"start": "stencil build --dev --serve --watch"
},
"devDependencies": {
"@stencil/core": "^4.18.3",
"@stencil/sass": "^3.0.12",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20231004",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettierx": "github:utily/prettierx#utily-20231004",
"rimraf": "^5.0.7",
"rollup-plugin-dotenv": "^0.5.1",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3"
},
"dependencies": {
"@userwidgets/model": "0.8.32",
"cloudly-http": "^0.1.7",
"cloudly-rest": "^0.1.4",
"cryptly": "4.0.6",
"gracely": "^2.0.8",
"isly": "^0.1.20",
"isoly": "^2.3.10",
"langly": "^2.0.9",
"smoothly": "1.2.1-alpha.18",
"urlpattern-polyfill": "^8.0.2",
"webcomponent-qr-code": "^1.2.0"
}
}