-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 944 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
42
{
"name": "component-styleguide",
"version": "2.1.0",
"description": "Simple styleguide framework",
"keywords": [
"styleguide",
"components",
"patterns"
],
"main": "server/index.js",
"bin": {
"styleguide": "bin/styleguide.js"
},
"dependencies": {
"compression": "^1.4.4",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"glob": "^7.1.2",
"handlebars": "^4.0.11",
"lodash": "^4.17.4",
"minimist": "^1.1.1"
},
"repository": {
"type": "git",
"url": "http://github.com/webpro/component-styleguide.git"
},
"bugs": {
"url": "https://github.com/webpro/component-styleguide/issues"
},
"author": {
"name": "Lars Kappert",
"email": "lars@webpro.nl",
"url": "http://webpro.nl"
},
"license": "MIT",
"devDependencies": {
"prettier": "^1.7.4"
},
"scripts": {
"prettier": "prettier --single-quote --write \"{bin,server}/**/*.js\""
}
}