-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.47 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.47 KB
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
{
"name": "@tynik/web-workers",
"version": "2.0.6",
"description": "Web Workers with React, Brain.js, and other things",
"keywords": [
"task",
"react",
"webworkers",
"web-workers",
"brainjs",
"ai",
"typescript"
],
"homepage": "https://github.com/Tynik/web-workers",
"bugs": {
"url": "https://github.com/Tynik/web-workers/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Tynik/web-workers.git"
},
"author": "Mykhailo Aliinyk <m.aliynik@gmail.com>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "jest --collect-coverage"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/__mocks__",
"!dist/**/__tests__",
"!dist/**/jest*"
],
"dependencies": {
"react": "17.0.2"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/react": "17.0.43",
"brain.js": "2.0.0-beta.11",
"jest": "27.5.1",
"ts-jest": "27.1.4",
"ts-loader": "9.2.8",
"typescript": "4.6.3",
"webpack": "5.71.0",
"webpack-cli": "4.9.2",
"worker-loader": "3.0.8"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/src/**/__tests__/**/*.ts"
],
"moduleNameMapper": {
"^worker-loader!(.+)$": "<rootDir>/src/__mocks__/$1"
},
"setupFiles": [
"./src/jest.setup.ts"
]
},
"browserslist": [
"defaults",
"not IE 11"
]
}