-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
{
"name": "es-dependency-graph",
"description": "Utility for obtaining the dependency graph from ES6 modules",
"version": "0.1.6",
"keywords": [
"ecmascript",
"es6",
"AST",
"dependency",
"dependencies",
"analizer"
],
"author": "Juan Dopazo <[email protected]> (http://github.com/juandopazo)",
"license": "BSD-3-Clause",
"bin": {
"dep-graph": "./bin/dep-graph.js"
},
"repository": {
"type": "git",
"url": "git://github.com/yahoo/es-dependency-graph.git"
},
"bugs": {
"url": "https://github.com/yahoo/es-dependency-graph/issues"
},
"engines": {
"node": ">=0.10.x"
},
"dependencies": {
"esprima-fb": "6001.1001.0-dev-harmony-fb",
"mkdirp": "^0.5.0",
"nomnom": "^1.6.2"
},
"devDependencies": {
"chai": "^4.2.0",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-es6-module-transpiler": "^0.6.0",
"grunt-es6-module-wrap-default": "^0.2.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"xunit-file": "^1.0.0"
},
"files": [
"dist",
"build",
"bin",
"vendor",
"LICENSE.md"
],
"main": "dist/index.js",
"scripts": {
"prepublish": "grunt build",
"test": "grunt test"
}
}