-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 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
{
"name": "@userwidgets/model",
"version": "0.8.33",
"description": "Model for the userwidgets app.",
"author": "Userwidgets Contributors",
"license": "MIT",
"repository": "https://github.com/userwidgets/model",
"bugs": {
"url": "https://github.com/userwidgets/model/issues"
},
"homepage": "https://github.com/userwidgets",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": [
"ts-jest",
{
"tsconfig": "./tsconfig.test.json"
}
]
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(cryptly|flagly|authly|isoly|isly|gracely|cloudly-http|cloudly-router|cloudly-formdata|cloudly-rest)/.*)"
],
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
]
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"build": "tsc -p .",
"test": "jest",
"test:watch": "watch jest",
"prepare": "npm run build",
"clean": "rimraf dist node_modules coverage"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"eslint": "^8.57.1",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20231004",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"prettierx": "github:utily/prettierx#utily-20231004",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "5.5.4"
},
"dependencies": {
"authly": "^3.1.2",
"cloudly-http": "^0.1.7",
"cloudly-rest": "^0.1.4",
"cryptly": "^4.0.6",
"flagly": "^0.2.4",
"gracely": "^2.0.8",
"isly": "^0.1.20",
"isoly": "2.3.11"
}
}