-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@alien-worlds/aw-workers",
"version": "0.0.5",
"description": "",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/Alien-Worlds/aw-workers.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test:unit": "jest --config=jest.config.unit.js",
"clean": "rm -rf ./build",
"build": "yarn clean && tsc -b",
"prepublish": "yarn clean && tsc --project tsconfig.build.json",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format-check": "prettier --check \"src/\"",
"format": "prettier --write \"src/\""
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.5",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"typescript": "^4.8.2"
},
"dependencies": {
"async": "^3.2.4",
"ts-node": "^10.9.1"
}
}