forked from dagrejs/dagre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "ciena-dagre",
"version": "1.0.4",
"description": "Graph layout for JavaScript",
"scripts": {
"build": "babel src -d lib --presets es2015 --plugins add-module-exports",
"lint": "npm run lint-js",
"lint-js": "eslint lib test *.js",
"test": "npm run lint && npm run utest",
"utest": "npm run build && istanbul cover _mocha -- --recursive tests"
},
"author": "Chris Pettitt <[email protected]>",
"contributors": [
"Matthew Dahl (https://github.com/sandersky)"
],
"main": "index.js",
"typings": "index.d.ts",
"keywords": [
"graph",
"layout"
],
"dependencies": {
"ciena-graphlib": "git://github.com/nchen63/graphlib#fa09e6c",
"lodash": "^4.15.0",
"npm-install-security-check": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ciena-blueplanet/dagre.git"
},
"license": "MIT"
}