-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "threadosaurus",
"version": "0.9.8",
"description": "A simple and intuitive way to utilize worker threads in Node.js with TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsc -p build.tsconfig.json && npm run lint && npm run test",
"compile": "tsc -p build.tsconfig.json",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"prepare-to-release": "npm version patch && git push --follow-tags",
"prepare": "npm run build",
"sample": " tsx ./sample/sample.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ralphv/threadosaurus.git"
},
"keywords": [
"worker",
"threads",
"typescript",
"nodejs"
],
"author": "Ralph Varjabedian",
"license": "MIT",
"bugs": {
"url": "https://github.com/ralphv/threadosaurus/issues"
},
"homepage": "https://github.com/ralphv/threadosaurus#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"directories": {
"test": "test"
}
}