This repository was archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.49 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.49 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
{
"name": "pyatch-worker",
"version": "1.0.0",
"description": "The pyodide worker for pyatch",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BX-Coding/pyatch-worker.git"
},
"keywords": [
"pyatch"
],
"author": "Elliot Roe",
"license": "MIT",
"bugs": {
"url": "https://github.com/BX-Coding/pyatch-worker/issues"
},
"homepage": "https://github.com/BX-Coding/pyatch-worker#readme",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
]
]
},
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@types/jest": "^28.1.8",
"babel-jest": "^29.4.2",
"eslint": "^7.2.0",
"eslint-config-developit": "^1.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.1",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.0.1",
"jsdom-global": "^3.0.2",
"lint-staged": "^13.0.3",
"microbundle": "^0.15.1",
"node-fetch": "^2.6.7",
"prettier": "^2.7.1"
},
"peerDependencies": {
"node-fetch": "*"
},
"dependencies": {
"chai": "^4.3.7",
"cross-blob": "^3.0.2",
"mitt": "^3.0.0",
"mocha": "^10.2.0",
"pyodide": "^0.22.1",
"sinon-chai": "^3.7.0",
"uuid-v4": "^0.1.0",
"web-worker": "^1.2.0"
}
}