-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "web-threads",
"version": "1.0.118",
"description": "generic threads using web workers for the web",
"main": "dist/web-threads.js",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"build:int": "rollup -c examples/rollup.config.js",
"test": "jest test/unit && npm run test:int",
"test:dev": "jest --watchAll test/unit",
"test:int": "npm run build:int && jest test/integration",
"test:cov": "jest --coverage && codecov",
"push": "yarn test && git push",
"deploy:major": "yarn version --major",
"deploy:minor": "yarn version --minor",
"deploy:patch": "yarn version --patch",
"deploy:push": "git push && git push --tags",
"preversion": "yarn test"
},
"keywords": [
"web worker",
"webworker",
"threads",
"multithreading",
"parallel",
"promise",
"generic"
],
"repository": "[email protected]:kanekotic/web-threads.git",
"author": "kanekotic <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/preset-env": "7.19.4",
"@faker-js/faker": "7.6.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.2.0",
"codecov": "3.8.3",
"jest": "29.2.0",
"jest-environment-jsdom": "29.2.0",
"jest-puppeteer": "6.1.1",
"puppeteer": "19.0.0",
"rollup": "3.2.3",
"rollup-plugin-babel": "4.4.0"
},
"babel": {
"presets": [
"@babel/env"
],
"env": {
"test": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/test/**/*-test.js"
],
"transform": {
".+\\.jsx|.js?$": "babel-jest"
}
}
}