-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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": "broccoli-dependency-funnel",
"version": "2.1.2",
"description": "Funnels a set of files included (or excluded) from a JS dependency graph",
"main": "src/index.js",
"scripts": {
"test": "mocha tests --reporter tap",
"test:debug": "mocha debug tests"
},
"engines": {
"node": ">= 6.0.0"
},
"keywords": [
"broccoli",
"plugin"
],
"contributors": [
"Nathan Hammond",
"Robert Jackson",
"Trent Willis"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ember-engines/broccoli-dependency-funnel.git"
},
"bugs": {
"url": "https://github.com/ember-engines/broccoli-dependency-funnel/issues"
},
"homepage": "https://github.com/ember-engines/broccoli-dependency-funnel#readme",
"files": [
"src"
],
"devDependencies": {
"broccoli-test-helper": "^1.5.0",
"chai": "^4.1.2",
"chai-files": "^1.4.0",
"co": "^4.6.0",
"fs-extra": "^7.0.0",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"testem": "^2.11.0",
"walk-sync": "^0.3.3"
},
"dependencies": {
"broccoli-plugin": "^1.3.1",
"fs-tree-diff": "^0.5.9",
"heimdalljs": "^0.2.5",
"heimdalljs-logger": "^0.1.9",
"mkdirp": "^0.5.1",
"mr-dep-walk": "^1.4.0",
"path-posix": "^1.0.0",
"rimraf": "^2.6.2",
"symlink-or-copy": "^1.2.0"
}
}