-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
132 lines (132 loc) · 2.6 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "baseroo",
"version": "0.0.0-development",
"description": "Converts positive & negative float values from one base to another between 2-64",
"repository": {
"type": "git",
"url": "https://github.com/ryasmi/baseroo.git"
},
"type": "module",
"source": "src/baseroo.ts",
"exports": {
"require": "./dist/baseroo.cjs",
"default": "./dist/baseroo.modern.js"
},
"main": "dist/baseroo.cjs",
"module": "dist/baseroo.module.js",
"unpkg": "dist/baseroo.umd.js",
"typings": "dist/baseroo.d.ts",
"author": "ryansmith94",
"license": "MIT",
"files": [
"dist",
"readme.md"
],
"scripts": {
"prepare": "husky",
"test": "jest",
"build": "microbundle"
},
"dependencies": {
"make-error": "^1.3.6"
},
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@types/atob": "2.1.4",
"@types/btoa": "1.2.5",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/validator": "13.12.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"commitlint": "19.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "3.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"microbundle": "0.15.1",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"bail": 1,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"lines": 100
}
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": true,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "always"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
0,
"always",
[
"sentence-case"
]
],
"subject-case": [
0,
"always",
[
"sentence-case"
]
]
}
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"deprecation"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"deprecation/deprecation": "warn"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}