forked from beeware/batavia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "@pybee/batavia",
"version": "3.4.0-dev.15",
"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",
"prepublish": "python compile_stdlib.py && 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"
},
"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": {
"babel-core": "6.18.2",
"babel-loader": "6.2.8",
"babel-preset-latest": "6.16.0",
"eslint": "3.9.1",
"eslint-config-airbnb": "13.0.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.1.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.6.0",
"json-loader": "0.5.4",
"uglifyjs": "2.4.10",
"webpack-dev-server": "1.16.2",
"@pybee/ouroboros": "~3.4.1-dev.4"
},
"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": "1.13.3"
}
}