-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"name": "micro-gallery",
"version": "0.4.5",
"description": "Like zeit's micro-list, but for images.",
"bin": {
"gallery": "./dist/bin/gallery.js"
},
"scripts": {
"dev": "gallery",
"build": "gulp build",
"start": "gulp"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/andreasmcdermott/micro-gallery.git"
},
"keywords": ["gallery", "images", "micro", "micro-list"],
"author": "Andreas McDermott <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreasmcdermott/micro-gallery/issues"
},
"homepage": "https://github.com/andreasmcdermott/micro-gallery#readme",
"xo": {
"semicolon": false,
"space": true,
"esnext": true
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs",
"transform-async-to-generator"
]
},
"dependencies": {
"chalk": "^1.1.3",
"denodeify": "^1.2.1",
"handlebars": "^4.0.5",
"micro": "^6.0.2",
"mime": "^1.3.4",
"minimist": "^1.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cached": "^1.1.0",
"gulp-chmod": "^1.3.0",
"gulp-stylus": "^2.5.0",
"prettier": "^1.5.3",
"xo": "^0.16.0"
}
}