forked from jriecken/dependency-graph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 764 Bytes
/
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
{
"name": "dependency-graph",
"description": "Simple dependency graph.",
"version": "0.8.0",
"author": "Jim Riecken <jriecken@gmail.com>",
"keywords": [
"dependency",
"graph"
],
"license": {
"type": "MIT",
"url": "http://github.com/jriecken/dependency-graph/raw/master/LICENSE"
},
"repository": {
"type": "git",
"url": "git://github.com/jriecken/dependency-graph.git"
},
"bugs": {
"url": "http://github.com/jriecken/dependency-graph/issues"
},
"main": "./lib/dep_graph.js",
"scripts": {
"test": "jasmine-node specs"
},
"dependencies": {},
"optionalDependencies": {},
"devDependencies": {
"jasmine-node": "2.0.1"
},
"engines": {
"node": ">= 0.6.0"
},
"types": "./lib/index.d.ts"
}