-
Notifications
You must be signed in to change notification settings - Fork 399
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "vizceral",
"version": "4.9.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 --mode=production && webpack --bail -p --mode=production",
"build:dev": "webpack --bail --mode=development && webpack --bail -d --mode=development",
"watch": "webpack --watch -d",
"release": "release",
"validate": "npm ls"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"documentation": "^8.1.2",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.0.1",
"file-loader": "^2.0.0",
"precommit-hook": "^3.0.0",
"raw-loader": "^0.5.1",
"release-script": "^1.0.2",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-command": "^0.4.1",
"worker-loader": "^2.0.0",
"yargs": "^12.0.1"
},
"dependencies": {
"@tweenjs/tween.js": "^16.8.0",
"chroma-js": "^1.1.1",
"hammerjs": "^2.0.8",
"lodash": "^4.17.14",
"numeral": "^1.5.3",
"three": "^0.106.2"
},
"keywords": [
"webgl",
"traffic",
"graph",
"particles",
"flow",
"intuition",
"visceral",
"visualization"
],
"pre-commit": [
"lint"
],
"author": "Justin Reynolds <[email protected]>",
"license": "Apache-2.0"
}