-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
41 lines (41 loc) · 1014 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
35
36
37
38
39
40
41
{
"name": "gulp-order",
"description": "The gulp plugin `gulp-order` allows you to reorder a stream of files using the same syntax as of `gulp.src`.",
"version": "1.1.1",
"license": "MIT",
"main": "lib/index.js",
"homepage": "https://github.com/sirlantis/gulp-order#readme",
"bugs": "https://github.com/sirlantis/gulp-order/issues",
"repository": "https://github.com/sirlantis/gulp-order.git",
"author": {
"name": "Marcel Jackwerth",
"email": "marceljackwerth@gmail.com",
"url": "http://twitter.com/sirlantis"
},
"devDependencies": {
"chai": "~4.1.2",
"coffeescript": "~2.3.1",
"mocha": "~5.2.0",
"vinyl": "~2.1.0"
},
"dependencies": {
"through": "~2.3.8",
"minimatch": "~3.0.4",
"stable": "~0.1.8"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"gulp",
"gulpplugin",
"minimatch",
"concat",
"order",
"pipe"
],
"scripts": {
"test": "mocha",
"prepublish": "coffee -o lib -c src/index.coffee"
}
}