-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 803 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 803 Bytes
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
{
"name": "lrcurve",
"version": "1.0.0",
"description": "Real-time learning curve for Jupiter notebooks",
"main": "index.js",
"private": true,
"directories": {
"example": "examples"
},
"scripts": {
"build": "browserify lrcurve/web_assets/d3.js | iconv -f UTF-8 -t ASCII//TRANSLIT//IGNORE > lrcurve/web_assets/d3.bundle.js",
"publish": "rm -rf dist && python setup.py sdist && twine upload dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreasMadsen/lrcurve.git"
},
"author": "Andreas Madsen",
"license": "MIT",
"dependencies": {
"browserify": "^16.5.0",
"d3-array": "^2.4.0",
"d3-axis": "^1.0.12",
"d3-scale": "^3.2.1",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-transition": "^1.3.2"
}
}