-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.11 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": "thrafe",
"version": "0.0.12",
"description": "A typescript library to help you get the most out of multithreading in the browser using web workers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"compile": "node_modules/.bin/tsc",
"patch": "npm run compile && npm version patch && npm publish",
"test": "ts-mocha ./src/**/*.test.ts ./src/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p-buddy/Thrafe.git"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.32",
"chai": "^4.3.6",
"install": "^0.13.0",
"mocha": "^10.0.0",
"npm": "^8.10.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.0",
"tslib": "^2.3.1"
},
"dependencies": {
"glob": "^8.0.3",
"rollup": "^2.71.1",
"typescript": "~4.6.2"
},
"author": "Parker Malachowsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/p-buddy/Thrafe/issues"
},
"homepage": "https://github.com/p-buddy/Thrafe#readme"
}