This repository has been archived by the owner on May 31, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "@pybee/batavia",
"version": "3.4.0-dev.19",
"description": "A Javascript implementation of the Python virtual machine.",
"main": "batavia/batavia.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "python compile_stdlib.py",
"prepublishOnly": "pandoc --from=rst --to=markdown_github README.rst -o README.md",
"dev": "webpack --progress -d",
"build": "webpack --progress -p",
"build:noCache": "DISABLE_WEBPACK_CACHE=true webpack --progress",
"watch": "webpack --progress --watch",
"serve": "webpack-dev-server --inline --hot --port 3000",
"lint": "eslint batavia",
"python": "./run_in_batavia.js"
},
"repository": {
"type": "git",
"url": "git://github.com/beeware/batavia.git"
},
"keywords": [
"python"
],
"author": "Russell Keith-Magee",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/beeware/batavia/issues"
},
"homepage": "http://beeware.org/batavia",
"devDependencies": {
"@pybee/ouroboros": "~3.4.1-dev.5",
"codemirror": "^5.42.2",
"css-loader": "^2.1.0",
"eslint": "4.18.2",
"eslint-config-standard": "6.2.1",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-promise": "3.4.2",
"eslint-plugin-react": "6.6.0",
"eslint-plugin-standard": "2.0.1",
"express": "^4.16.4",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"ajv": "^6.7.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.0.0",
"base64-js": "^1.3.0",
"bignumber.js": "2.4.0",
"buffer": "5.0.0",
"babel-loader": "^8.0.5",
"cache-loader": "^1.0.3",
"moment": "~> 2.19.3",
"moment-timezone": "0.5.10",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1",
"mini-css-extract-plugin": "^0.5.0"
}
}