forked from beeware/batavia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "@pybee/batavia",
"version": "3.4.0-dev.18",
"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",
"build": "node_modules/.bin/webpack --progress",
"watch": "node_modules/.bin/webpack --progress --watch",
"serve": "node_modules/.bin/webpack-dev-server --inline --hot --port 3000",
"lint" : "node_modules/.bin/eslint batavia"
},
"repository": {
"type": "git",
"url": "git://github.com/pybee/batavia.git"
},
"keywords": [
"python"
],
"author": "Russell Keith-Magee",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/pybee/batavia/issues"
},
"homepage": "http://pybee.org/batavia",
"devDependencies": {
"@pybee/ouroboros": "~3.4.1-dev.5",
"babel-core": "6.18.2",
"babel-loader": "6.2.8",
"babel-preset-latest": "6.16.0",
"eslint": "3.9.1",
"eslint-config-standard": "6.2.1",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.1.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",
"webpack-dev-server": "2.3.0"
},
"dev": "webpack-dev-server",
"dependencies": {
"base64-js": "1.2.0",
"bignumber.js": "2.4.0",
"buffer": "5.0.0",
"moment": "2.17.0",
"moment-timezone": "0.5.10",
"webpack": "2.2.1"
}
}