-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.18 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.18 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
{
"name": "cloudly-hook",
"version": "0.0.15",
"description": "Library to handle webhooks in Cloudflare Workers.",
"author": "Utily Contributors",
"license": "MIT",
"repository": "https://github.com/utily/cloudly-hook",
"bugs": {
"url": "https://github.com/utily/cloudly-hook/issues"
},
"homepage": "https://github.com/utily",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(cryptly|authly|isly|isoly|gracely|cloudly-http|cloudly-router|@cloudflare/workers-types|cloudly-storage)/.*)"
],
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/",
"test-worker/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"build": "tsc -p .",
"jest": "jest",
"test": "cd test-worker/ && npm run test && cd .. && jest",
"prepare": "npm run build",
"clean": "rimraf dist node_modules coverage",
"start": "npm --prefix test-worker run start",
"uninstall": "rm -rf dist && rm -rf test-worker/dist"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"eslint": "^8.57.0",
"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.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"cloudly-http": "^0.1.7",
"cloudly-router": "^0.1.1",
"cloudly-storage": "^0.10.15",
"gracely": "^2.0.8",
"isly": "^0.1.20",
"isoly": "^2.3.11"
}
}