-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 Bytes
/
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
{
"name": "@fab1o/concurrency",
"version": "0.0.6",
"description": "Create fake jobs for concurrency simulation & testing.",
"main": "dist/index.js",
"author": {
"name": "Fabio Costa",
"url": "https://github.com/fab1o"
},
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest --watchAll",
"lint": "eslint . --ext .ts",
"lint-fix": "prettier --ignore-path \".prettierignore\" --write \"./**/*.{ts,json,md}\" && eslint . --ext .ts --fix"
},
"devDependencies": {
"@types/jest": "29.5.3",
"@types/node": "20.4.5",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.6.2",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"license": "ISC",
"files": [
"src",
"typings",
"dist"
]
}