-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.27 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.27 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
{
"name": "authly",
"version": "4.0.4",
"description": "Tokenized authentication using JSON Web Tokens with support for encrypted token properties.",
"author": "Utily Contributors",
"license": "MIT",
"repository": "git+https://github.com/utily/authly",
"bugs": {
"url": "https://github.com/utily/authly/issues"
},
"homepage": "https://github.com/utily",
"private": false,
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": {
"types": "./types/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./types/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"browser": {
"./dist/mjs/crypto": "./dist/mjs/crypto.browser",
"./dist/cjs/crypto": "./dist/cjs/crypto.browser"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": [
"ts-jest",
{
"tsconfig": "./tsconfig.test.json"
}
]
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(cryptly|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": {
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"build": "rimraf dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh",
"test": "jest",
"prepare": "npm run build",
"clean": "rimraf dist node_modules coverage"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"cryptly": "4.0.6",
"isly": "^0.1.20"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint": "^8.57.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20231004",
"eslint-plugin-simple-import-sort": "^12.1.1",
"isoly": "^2.3.11",
"jest": "^29.7.0",
"prettierx": "github:utily/prettierx#utily-20231004",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}