forked from SC5/sc5-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.65 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
{
"name": "sc5-styleguide",
"version": "0.3.12",
"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.12.2",
"chalk": "~1.0.0",
"cheerio": "^0.19.0",
"cookie-parser": "~1.3.4",
"css": "~2.2.0",
"express": "~4.12.3",
"gonzales-ast": "0.0.6",
"gonzales-pe": "3.0.0-12",
"gulp": "~3.8.11",
"gulp-concat": "~2.5.2",
"gulp-mustache": "~1.0.2",
"gulp-rename": "~1.2.0",
"gulp-sass": "~1.3.3",
"gulp-util": "~3.0.4",
"kss": "~2.0.2",
"lodash": "~3.5.0",
"markdown-it": "^4.1.1",
"minimatch": "~2.0.4",
"morgan": "~1.5.2",
"node-neat": "~1.7.1-beta1",
"q": "~1.2.0",
"run-sequence": "~1.0.2",
"socket.io": "~1.3.5",
"through2": "~0.6.3",
"vinyl": "~0.4.6",
"vinyl-fs": "~1.0.0",
"yargs": "~3.5.4"
},
"devDependencies": {
"chai": "~2.1.2",
"conventional-changelog": "git://github.com/sc5/conventional-changelog.git#features/sc-styleguide",
"coveralls": "~2.11.2",
"del": "~1.1.1",
"dependency-check": "~2.3.0",
"gulp-bower": "~0.0.10",
"gulp-istanbul": "~0.6.0",
"gulp-jscs": "~1.4.0",
"gulp-jshint": "~1.9.4",
"gulp-mocha": "~2.0.0",
"gulp-ng-annotate": "~0.5.2",
"gulp-pleeease": "~1.2.0",
"gulp-plumber": "~1.0.0",
"gulp-sourcemaps": "~1.5.1",
"istanbul": "~0.3.8",
"jscs": "~1.11.3",
"karma": "~0.12.31",
"karma-coverage": "~0.2.7",
"karma-mocha": "~0.1.10",
"karma-mocha-reporter": "~1.0.2",
"karma-phantomjs-launcher": "~0.1.4",
"karma-sinon-chai": "~0.3.0",
"main-bower-files": "~2.6.2",
"multiline": "~1.0.2",
"proxyquire": "~1.4.0",
"requirefrom": "~0.2.0",
"sinon": "~1.14.1",
"sinon-chai": "~2.7.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"
}
}