-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
133 lines (133 loc) · 3.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "sc5-styleguide",
"version": "2.2.0",
"description": "Styleguide generator is a handy little tool that helps you generate good looking styleguides from stylesheets using KSS notation.",
"bin": {
"styleguide": "./bin/styleguide"
},
"license": "MIT",
"author": "SC5",
"keywords": [
"styleguide"
],
"repository": {
"type": "git",
"url": "https://github.com/SC5/sc5-styleguide.git"
},
"main": "./lib/styleguide.js",
"files": [
"bin/",
"lib/",
"test/",
".bowerrc",
".jscsrc",
"demo-gulpfile.js",
"bower.json",
"CHANGELOG.md",
"CHANGELOG_LATEST.md",
"LICENSE",
"README.md"
],
"dependencies": {
"autoprefixer": "^6.3.2",
"basic-auth-connect": "~1.0.0",
"bemto.pug": "^2.1.0",
"body-parser": "~1.14.1",
"chalk": "~1.1.1",
"cheerio": "^0.19.0",
"cookie-parser": "~1.4.0",
"css": "~2.2.0",
"cssnext": "^1.8.4",
"express": "~4.13.0",
"fs-extra": "^0.26.2",
"gonzales-pe": "4.0.3",
"gulp": "~3.9.0",
"gulp-concat": "~2.6.0",
"gulp-cssnext": "^1.0.1",
"gulp-mustache": "~2.0.1",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-util": "~3.0.5",
"kss": "~2.1.0",
"lodash": "~3.10.1",
"markdown-it": "^8.3.1",
"minimatch": "~3.0.0",
"minimist": "^1.2.0",
"morgan": "~1.6.0",
"node-localcache": "^0.1.3",
"postcss": "^5.0.14",
"postcss-advanced-variables": "^1.2.2",
"postcss-color-alpha": "^1.0.3",
"postcss-color-function": "^2.0.0",
"postcss-conditionals": "^2.0.1",
"postcss-custom-media": "^5.0.1",
"postcss-import": "^8.0.2",
"postcss-inline-comment": "^2.0.0",
"postcss-mixins": "^4.0.0",
"postcss-nested": "^1.0.0",
"postcss-partial-import": "^1.3.0",
"pug": "^2.0.0-beta6",
"q": "~1.4.1",
"run-sequence": "~1.1.0",
"socket.io": "~1.4.0",
"through2": "~2.0.0",
"vinyl": "~1.1.0",
"vinyl-fs": "~2.2.1",
"yargs": "~3.30.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-register": "^6.7.2",
"chai": "~3.4.1",
"conventional-changelog": "git://github.com/sc5/conventional-changelog.git#features/sc-styleguide",
"coveralls": "~2.11.2",
"del": "~2.1.0",
"dependency-check": "~2.5.1",
"gulp-babel": "^6.1.0",
"gulp-bower": "~0.0.10",
"gulp-clean": "^0.3.2",
"gulp-cssmin": "^0.1.7",
"gulp-doctoc": "^0.1.2",
"gulp-gh-pages": "^0.5.4",
"gulp-ignore": "^2.0.2",
"gulp-istanbul": "~0.10.0",
"gulp-jscs": "~3.0.2",
"gulp-jshint": "~2.0.0",
"gulp-mocha": "~2.2.0",
"gulp-ng-annotate": "~1.1.0",
"gulp-plumber": "~1.0.1",
"gulp-rimraf": "^0.2.0",
"gulp-webserver": "^0.9.1",
"istanbul": "~0.4.1",
"jscs": "~2.6.0",
"jshint": "~2.9.1",
"karma": "~0.13.15",
"karma-coverage": "~0.5.3",
"karma-mocha": "~0.2.1",
"karma-mocha-reporter": "~1.1.2",
"karma-phantomjs-launcher": "~1.0.0",
"karma-sinon-chai": "~1.1.0",
"main-bower-files": "~2.9.0",
"mocha": "^3.5.3",
"node-localcache": "^0.1.3",
"phantomjs-prebuilt": "2.1.7",
"proxyquire": "~1.7.3",
"requirefrom": "~0.2.0",
"sinon": "~1.17.2",
"sinon-chai": "~2.8.0",
"yaspeller-ci": "^0.3.0"
},
"scripts": {
"pretest": "gulp clean-coverage",
"test": "gulp test && npm run spellcheck",
"spellcheck": "yaspeller-ci README.md DEVELOPMENT.md",
"posttest": "gulp generate-coverage-report",
"prepublish": "gulp build",
"build": "gulp build",
"demo": "gulp --gulpfile ./demo-gulpfile.js watch",
"depcheck": "dependency-check . --unused --no-dev --entry gulpfile.js --entry demo-gulpfile.js --entry lib/styleguide.js"
}
}