-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.26 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.26 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
101
102
103
104
105
106
107
108
109
110
111
112
{
"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",
"lint": "eslint src",
"lockfile:lint": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https"
},
"dependencies": {
"make-error": "^1.3.6"
},
"devDependencies": {
"@commitlint/config-conventional": "20.4.1",
"@types/atob": "2.1.4",
"@types/btoa": "1.2.5",
"@types/jest": "30.0.0",
"@types/node": "24.10.11",
"@types/validator": "13.15.10",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"commitlint": "20.4.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.2.7",
"lockfile-lint": "4.14.1",
"microbundle": "0.15.1",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"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"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}