-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
57
58
{
"name": "slidepack",
"version": "0.0.0",
"description": "A really simple slides generator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"slides"
],
"author": "Asís García",
"license": "MIT",
"devDependencies": {
"browserify": "^6.1.0",
"browserify-shim": "^3.8.0",
"coffee-script": "^1.8.0",
"coffeeify": "^0.7.0",
"colors.css": "^1.0.0",
"del": "^0.1.3",
"gulp": "^3.8.8",
"gulp-autoprefixer": "^1.0.1",
"gulp-coffee": "^2.2.0",
"gulp-coffeelint": "^0.4.0",
"gulp-concat": "^2.4.1",
"gulp-import-css": "^0.1.2",
"gulp-insert": "^0.4.0",
"gulp-livereload": "^2.1.1",
"gulp-minify-css": "^0.3.11",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.1.0",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.1",
"gulp-zip": "^2.0.2",
"marked": "^0.3.2",
"mousetrap": "0.0.1",
"normalize.css": "^3.0.2",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.0.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"zeptojs": "./lib/zeptojs/zepto.js",
"highlightjs": "./lib/highlightjs/highlight.pack.js"
},
"browserify-shim": {
"zeptojs": {
"exports": "$"
},
"highlightjs": {
"exports": "hljs"
}
}
}