-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "gulp-fileindex",
"version": "1.0.1",
"description": "Outputs a list of pages links in an HTML page",
"scripts": {
"dev": "nodemon -q -x 'npm run test'",
"lint": "eslint index.js tests/*.js",
"test": "npm run lint && tape tests/tests.js | tap-spec"
},
"engines": {
"node": ">=0.10.x"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/raiseandfall/gulp-fileindex.git"
},
"keywords": [
"gulpplugin",
"file",
"files",
"index",
"html",
"links",
"styleguide",
"static",
"gulp"
],
"author": {
"name": "raiseandfall",
"url": "https://github.com/raiseandfall"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/raiseandfall/gulp-fileindex/issues"
},
"homepage": "https://github.com/raiseandfall/gulp-fileindex",
"devDependencies": {
"eslint": "^2.5.3",
"eslint-config-google": "^0.4.0",
"event-stream": "^3.3.2",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"nodemon": "^1.9.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"dependencies": {
"extend": "^3.0.0",
"through2": "^2.0.1"
}
}