forked from Netflix/vizceral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "vizceral",
"version": "4.6.0",
"description": "Intuitive animated traffic graph visualization using webgl. If a graph of nodes and edges with data about traffic volume is provided, it will render a traffic graph animating the connection volume between nodes.",
"main": "dist/vizceral.js",
"repository": {
"type": "git",
"url": "[email protected]:Netflix/vizceral.git"
},
"scripts": {
"dev": "npm run watch",
"doc": "documentation build ./src/vizceral.js --shallow -f md > USAGE.md",
"lint": "eslint src --fix",
"build": "npm run doc && npm run build:js",
"build:js": "webpack --bail && webpack --bail -p",
"watch": "webpack --watch -d",
"release": "release",
"validate": "npm ls"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.0",
"documentation": "^4.0.0-beta2",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.0.1",
"file-loader": "^0.9.0",
"precommit-hook": "^3.0.0",
"raw-loader": "^0.5.1",
"release-script": "^1.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"worker-loader": "^0.7.0",
"yargs": "^6.3.0"
},
"dependencies": {
"chroma-js": "^1.1.1",
"hammerjs": "^2.0.8",
"lodash": "^4.12.0",
"numeral": "^1.5.3",
"three": "^0.86.0",
"tween.js": "16.6.0"
},
"keywords": [
"webgl",
"traffic",
"graph",
"particles",
"flow",
"intuition",
"visceral",
"visualization"
],
"pre-commit": [
"lint"
],
"author": "Justin Reynolds <[email protected]>",
"license": "Apache-2.0"
}