-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "laravel-docs-reader",
"version": "1.0.0",
"description": "Lector de la documentación de Laravel en Español",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"anchor-js": "^0.3.1",
"browserify": "9.0.3",
"foundation": "^4.2.1-1",
"vinyl-transform": "^1.0.0"
},
"devDependencies": {
"browserify-shim": "^3.8.3",
"gulp-uglify": "^1.1.0",
"gulp": "^3.8.10",
"gulp-buffer": "0.0.2",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.4.2",
"gulp-minify-css": "^0.3.11",
"gulp-notify": "^2.1.0",
"gulp-rename": "^1.2.0",
"gulp-rev": "^3.0.0",
"gulp-sass": "^1.2.4",
"gulp-watch": "^3.0.0"
},
"browser": {
"anchor-js": "./node_modules/anchor-js/anchor.js"
},
"browserify-shim": {
"anchor-js": "addAnchors"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/montogeek/laravel-docs-reader.git"
},
"author": "Fernando Montoya",
"license": "ISC",
"bugs": {
"url": "https://github.com/montogeek/laravel-docs-reader/issues"
},
"homepage": "https://github.com/montogeek/laravel-docs-reader"
}