forked from broccolijs/broccoli-funnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "broccoli-funnel",
"version": "1.1.0",
"description": "Broccoli plugin that allows you to filter files selected from an input node down based on regular expressions.",
"main": "index.js",
"author": "Robert Jackson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/broccolijs/broccoli-funnel.git"
},
"files": [
"index.js"
],
"scripts": {
"test": "mocha tests/",
"test:debug": "mocha debug tests/",
"preversion": "npm test",
"postversion": "git push origin master --follow-tags && npm publish"
},
"keywords": [
"broccoli-plugin",
"javascript"
],
"dependencies": {
"array-equal": "^1.0.0",
"blank-object": "^1.0.1",
"broccoli-plugin": "hjdivad/broccoli-plugin#hjdivad/change-tracking",
"debug": "^2.2.0",
"exists-sync": "0.0.4",
"fast-ordered-set": "^1.0.0",
"fs-tree-diff": "stefanpenner/fs-tree-diff#fs-tree-facade",
"heimdalljs": "^0.2.0",
"minimatch": "^3.0.0",
"mkdirp": "^0.5.0",
"path-posix": "^1.0.0",
"rimraf": "^2.4.3",
"symlink-or-copy": "^1.0.0",
"walk-sync": "hjdivad/node-walk-sync#support-user-supplied-fs"
},
"devDependencies": {
"broccoli-builder": "^0.18.0",
"chai": "^3.2.0",
"fixturify": "^0.3.0",
"fs-extra": "^0.30.0",
"mocha": "~3.0.2",
"mocha-jshint": "2.3.1",
"rimraf": "^2.3.2",
"rsvp": "^3.3.3"
}
}