-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "@schascha/brabbelback",
"version": "0.8.0",
"description": "Just some JS utils",
"main": "index.js",
"keywords": [
"javascript",
"typescript",
"utils"
],
"scripts": {
"start": "tsc -w",
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint --fix",
"test": "jest src/ --coverage --verbose"
},
"author": "Sascha Künstler <contact.schascha@gmail.com> (https://www.schaschaweb.de)",
"repository": {
"type": "git",
"url": "https://github.com/Schascha/brabbelback"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Schascha/brabbelback/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@schascha/eslint-config": "^0.3.0",
"@types/jest": "^29.5.13",
"babel-jest": "^29.7.0",
"eslint": "^9.11.1",
"eslint-plugin-jest": "^28.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"files": [
"dist",
"src",
"!src/*.test.js"
],
"types": "dist",
"overrides": {
"globals": "14.0.0"
}
}