forked from SC5/sc5-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.72 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
{
"name": "sc5-styleguide",
"version": "0.3.26",
"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": {
"body-parser": "~1.13.0",
"chalk": "~1.0.0",
"cheerio": "^0.19.0",
"cookie-parser": "~1.3.5",
"css": "~2.2.0",
"express": "~4.13.0",
"fs-extra": "^0.20.0",
"gonzales-pe": "3.0.0-29",
"gulp": "~3.9.0",
"gulp-concat": "~2.5.2",
"gulp-mustache": "~1.0.2",
"gulp-pleeease": "~1.2.0",
"gulp-rename": "~1.2.2",
"gulp-replace": "^0.5.3",
"gulp-sass": "~2.0.1",
"gulp-util": "~3.0.5",
"kss": "~2.1.0",
"lodash": "~3.9.3",
"markdown-it": "^4.2.1",
"minimatch": "~2.0.8",
"morgan": "~1.6.0",
"node-neat": "~1.7.2",
"postcss": "^4.1.12",
"q": "~1.4.1",
"run-sequence": "~1.1.0",
"socket.io": "~1.3.5",
"through2": "~2.0.0",
"vinyl": "~0.5.0",
"vinyl-fs": "~1.0.0",
"yargs": "~3.12.0"
},
"devDependencies": {
"chai": "~3.0.0",
"conventional-changelog": "git://github.com/sc5/conventional-changelog.git#features/sc-styleguide",
"coveralls": "~2.11.2",
"del": "~1.2.0",
"dependency-check": "~2.4.0",
"gulp-bower": "~0.0.10",
"gulp-doctoc": "^0.1.2",
"gulp-istanbul": "~0.10.0",
"gulp-jscs": "~1.5.1",
"gulp-jshint": "~1.11.0",
"gulp-mocha": "~2.1.1",
"gulp-ng-annotate": "~1.0.0",
"gulp-plumber": "~1.0.1",
"gulp-replace": "^0.5.3",
"istanbul": "~0.3.14",
"jscs": "~1.11.3",
"karma": "~0.12.36",
"karma-coverage": "~0.3.1",
"karma-mocha": "~0.1.10",
"karma-mocha-reporter": "~1.0.2",
"karma-phantomjs-launcher": "~0.2.0",
"karma-sinon-chai": "~0.3.0",
"main-bower-files": "~2.8.0",
"multiline": "~1.0.2",
"proxyquire": "~1.5.0",
"requirefrom": "~0.2.0",
"sinon": "~1.14.1",
"sinon-chai": "~2.8.0"
},
"scripts": {
"pretest": "gulp clean-coverage",
"test": "gulp test",
"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"
}
}