-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "@koderfunk/batch-loader",
"version": "0.1.1",
"license": "MIT",
"homepage": "https://github.com/KODerFunk/batch-loader",
"bugs": {
"url": "https://github.com/KODerFunk/batch-loader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/KODerFunk/batch-loader.git"
},
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"ts-check": "tsc --noEmit --incremental",
"lint": "eslint src --fix",
"lint:ci": "eslint src",
"test": "jest",
"test:ci": "jest --ci",
"precommit": "npm run lint && npm run ts-check && npm run lint",
"prebuild": "rm -rf ./dist",
"build": "tsc --project tsconfig.build.json",
"postbuild": "eslint dist --fix",
"prerelease": "npm run build",
"release": "np"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-plugin-unicorn": "^49.0.0",
"jest": "^29.7.0",
"np": "^10.2.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}