-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
{
"name": "d3.nomogram",
"version": "0.1.0",
"main": "d3.nomogram.js",
"description": "VersatilePCP: Highly customizable SVG-Based Nomogram library.",
"keywords": [
"d3",
"visualization",
"parallel coordinates"
],
"homepage": "https://github.com/AndrewTBurks/d3.nomogram",
"author": {
"name": "Andrew Burks",
"url": "https://github.com/AndrewTBurks"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/AndrewTBurks/d3.nomogram.git"
},
"dependencies": {
"d3": "4.0"
},
"devDependencies": {
"eslint": "latest",
"jsdoc-to-markdown": "latest"
},
"scripts" : {
"lint": "eslint --fix d3.nomogram.js",
"doc": "jsdoc2md \"d3.nomogram.js\" > README.md",
"in": "npm install",
"indev": "npm install --dev",
"push-both": "git push origin master && git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master"
},
"license": [
{
"url": "https://github.com/AndrewTBurks/d3.nomogram/blob/master/LICENSE"
}
]
}