forked from dagrejs/dagre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.41 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
67
{
"name": "dagre",
"version": "0.8.5-pre",
"description": "Graph layout for JavaScript",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"contributors": [
"Matthew Dahl (https://github.com/sandersky)"
],
"license": "MIT",
"main": "index.js",
"keywords": [
"graph",
"layout"
],
"dependencies": {
"graphlib": "^2.1.7",
"lodash": "^4.17.11"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"eslint": "^5.13.0",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^4.1.0",
"phantomjs-prebuilt": "^2.1.16",
"requirejs": "^2.3.5",
"semver": "^5.4.1",
"sprintf": "^0.1.5",
"uglify-js": "^3.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/dagrejs/dagre.git"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
]
}
}
}