-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "dnotebook",
"version": "1.0.0",
"description": "Jupyter-like library for JavaScript environment. It allows you to create and share pages that contain live code, text and visualizations.",
"main": "dnotebook/src/bin/www",
"contributors": [
{
"name": "Rising Odegua"
}
],
"files": [
"dnotebook/"
],
"scripts": {
"install": "cd src/frontend && yarn && cd ../server && yarn",
"build": "cd src/frontend && yarn build && cd ../server && yarn build",
"dev": "cd src/frontend && yarn dev && cd ../server && yarn dev",
"start": "cd src/server && yarn && yarn start & cd src/frontend && yarn && yarn build && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opensource9ja/dnotebook.git"
},
"keywords": [
"Notebook",
"Interactive-analysis",
"live-code",
"Jupyter-Notebook",
"Danfojs"
],
"author": "Rising Odegua <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opensource9ja/dnotebook/issues"
},
"homepage": "https://github.com/opensource9ja/dnotebook#readme"
}