-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "client-side-python-runner",
"version": "1.7.2",
"description": "A client side Python runner wrapper",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/niklasmh/client-side-python-runner.git"
},
"scripts": {
"examples": "npx serve",
"test": "jest",
"build": "tsc",
"prepublishOnly": "node prepare",
"develop": "node prepare develop",
"done": "node prepare"
},
"keywords": [
"skulpt",
"pyodide",
"brython",
"python",
"wrapper",
"client-side",
"python-runner"
],
"author": "Niklas Molnes Hole <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/niklasmh/client-side-python-runner/issues"
},
"homepage": "https://github.com/niklasmh/client-side-python-runner#readme",
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/preset-env": "7.14.8",
"@types/jest": "26.0.24",
"@types/node": "^16.4.10",
"babel-jest": "27.0.6",
"jest": "27.0.6",
"typescript": "4.3.5"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "jsdom",
"testRegex": "/.+\\.test\\.js$"
}
}