-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "netjsongraph.js",
"version": "0.1.3",
"description": "NetJson format data visualization",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --open --hot --mode development",
"start": "npm run dev",
"build": "webpack --progress --hide-modules --mode production",
"precommit": "lint-staged",
"lint": "eslint --fix --ext .js src"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"repository": "https://github.com/netjson/netjsongraph.js.git",
"author": "Federico Capoano <[email protected]> (http://nemesisdesign.net/)",
"contributors": [
"GeekPlux <[email protected]> (http://geekplux.com/)"
],
"license": "BSD-3-Clause",
"keywords": [
"netjson",
"network",
"data",
"visualization"
],
"devDependencies": {
"acorn": "^6.0.0",
"css-loader": "^1.0.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^2.9.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^7.2.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "1.14.2",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"dependencies": {
"d3": "^4.9.1"
}
}