-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.14 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.14 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@panviz/layout",
"version": "0.0.1",
"description": "Layouts",
"keywords": [
"data visualization",
"layout algorythm"
],
"homepage": "https://github.com/panviz/layout#readme",
"license": "MIT",
"main": "dist/layout.js",
"module": "index",
"repository": {
"type": "git",
"url": "https://github.com/panviz/layout"
},
"scripts": {
"build": "yarn build:lib && yarn build:demo",
"build:lib": "webpack --mode=production",
"build:demo": "cd demo/ && webpack --mode=production",
"lint": "eslint . --ignore-path .gitignore",
"start": "cd demo && webpack-dev-server --port 8007",
"deploy": "cd demo/ && rsync -azP --delete dist/ index.html daviste.com:/home/dmitra/daviste.com/static/demo/panviz-layout",
"test": "jest"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions"
],
"node": "current"
}
}
]
]
},
"eslintConfig": {
"env": {
"jest": true,
"browser": true
},
"extends": "@panviz/eslint-config",
"globals": {
"_": true,
"$": true
}
},
"dependencies": {
"d3-force": "^2.0.1",
"d3-quadtree": "^1.0.3",
"eventemitter3": "^4.0.0",
"webcola": "^3.3.6"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@panviz/eslint-config": "^0.0.1",
"css-loader": "^3.2.0",
"d3-dsv": "^1.0.7",
"d3-ease": "^1.0.3",
"d3-selection": "^1.1.0",
"d3-transition": "^1.1.0",
"dat.gui": "^0.7.2",
"eslint": "^6.2.2",
"jest": "^24.9.0",
"jquery": "^3.4.1",
"node-sass": "^4.9.0",
"raw-loader": "^3.1.0",
"sass-loader": "^7.0.3",
"style-loader": "^1.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"peerDependencies": {
"lodash": "4.x.x"
},
"jest": {
"testMatch": [
"**/test/**/!(*.setup).js"
],
"setupFiles": [
"./test/global.setup.js"
]
},
"precommit": "lint"
}