-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.21 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
{
"name": "async-worker",
"version": "2.0.2",
"description": "Async worker for javascripts that unlocks true asynchronous programming",
"main": "./dist",
"scripts": {
"test": "jest --no-cache --forceExit",
"build": "tsc && webpack",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shilangyu/async-worker.git"
},
"keywords": [
"web-workers",
"async-js",
"async-worker",
"async-functions",
"thread-workers"
],
"author": "Marcin Wojnarowski @shilangyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/shilangyu/async-worker/issues"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^18.0.0",
"husky": "^8.0.1",
"jest": "^25.2.0",
"ts-jest": "^25.2.1",
"ts-node": "^10.0.0",
"typescript": "^3.4.2",
"webpack": "^5.1.3",
"webpack-cli": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"tests/web"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"anyworker": "^1.2.1",
"eev": "^0.1.5"
},
"files": [
"dist/**/*",
"asyncWorker.svg"
]
}