-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
66
67
68
69
70
71
72
73
74
{
"name": "pyreact2",
"version": "0.0.4",
"description": "A pythonic adaptation of React JS",
"main": "",
"scripts": {
"start": "python app/index.py",
"test": "echo \"No test available\"",
"find-port": "lsof -i tcp:8000",
"kill-port": "kill -9",
"build": "python setup.py sdist bdist_wheel",
"publish": "twine upload dist/*"
},
"author": "Jaylen A. Douglas | Able Inc.",
"license": "ISC",
"homepage": "http://localhost:8000",
"setup": {
"author_email": "[email protected]",
"long_description": "file: README.md",
"long_description_content_type": "text/markdown",
"url": "https://github.com/ableinc/pyreact",
"include_package_data": true,
"zip_safe": false,
"keywords": [
"react js",
"web development",
"client side",
"server side",
"able inc",
"jaylen douglas",
"python 3.6",
"browser",
"UI",
"python javascript",
"html",
"python 3",
"css",
"html"
],
"packages": [],
"package_data": {
"pyreact": [
"pyreact/data/App.css",
"pyreact/data/App.py",
"pyreact/data/index.py",
"pyreact/data/README.md",
"pyreact/data/index.html",
"pyreact/data/manifest.json"
]
},
"data_files": [
"pyreact/data/App.css",
"pyreact/data/App.py",
"pyreact/data/index.py",
"pyreact/data/README.md",
"pyreact/data/index.html",
"pyreact/data/manifest.json"
],
"entry_points": "\n[console_scripts]\npyreact=pyreact.cli:cli\n ",
"classifiers": [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
},
"dependencies": {
"sanic": "20.6.3",
"pydotenvs": "0.1.4",
"beautifulsoup4": "4.9.1",
"pipreqs": "0.4.10",
"Click": "7.0"
},
"devDependencies": {}
}