forked from SC5/sc5-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.85 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
{
"name": "sc5-styleguide",
"version": "0.2.7",
"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",
"dependencies": {
"body-parser": "^1.9.2",
"chalk": "^0.5.1",
"cookie-parser": "^1.3.3",
"coveralls": "^2.11.2",
"css": "^2.1.0",
"debug": "~2.1.0",
"event-stream": "^3.1.7",
"express": "^4.10.1",
"gonzales-ast": "0.0.5",
"gonzales-pe": "^3.0.0-11",
"gulp": "^3.8.10",
"gulp-bower": "^0.0.7",
"gulp-concat": "^2.4.1",
"gulp-filter": "^1.0.2",
"gulp-ignore": "^1.2.1",
"gulp-less": "^1.3.6",
"gulp-marked": "^1.0.0",
"gulp-mustache": "^1.0.0",
"gulp-pleeease": "^1.0.4",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-run": "^1.6.4",
"gulp-sass": "^1.2.2",
"gulp-util": "^3.0.1",
"jade": "^1.7.0",
"kss": "^1.2.0",
"lodash": "^2.4.1",
"mkdirp": "^0.5.0",
"morgan": "^1.4.1",
"ncp": "^1.0.1",
"node-bourbon": "^1.2.3",
"node-neat": "^1.3.0",
"node.extend": "^1.1.2",
"ometajs": "^3.3.7",
"q": "^1.1.1",
"run-sequence": "^1.0.1",
"sanitize-html": "^1.4.3",
"serve-favicon": "^2.1.6",
"socket.io": "^1.2.0",
"through2": "^0.6.3",
"vinyl": "^0.4.3",
"vinyl-fs": "^0.3.10",
"yargs": "^1.3.2"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^1.9.2",
"conventional-changelog": "git://github.com/sc5/conventional-changelog.git#features/sc-styleguide",
"exec-sync": "^0.1.6",
"gulp-flatten": "0.0.4",
"gulp-jscs": "^1.2.1",
"gulp-jshint": "^1.8.6",
"gulp-sourcemaps": "^1.2.4",
"istanbul": "^0.3.2",
"jscs": "^1.7.3",
"karma": "^0.12.24",
"karma-coverage": "^0.2.6",
"karma-mocha": "^0.1.9",
"karma-mocha-reporter": "^0.3.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.2.0",
"main-bower-files": "^2.1.0",
"mocha": "^2.0.1",
"mocha-shared": "^0.2.0",
"multiline": "^1.0.1",
"sinon": "^1.11.1",
"sinon-chai": "^2.6.0",
"tiny-lr": "^0.1.4"
},
"scripts": {
"test": "node_modules/istanbul/lib/cli.js cover --config=test/istanbul.conf.json --dir=coverage/mocha node_modules/mocha/bin/_mocha && node_modules/karma/bin/karma start test/karma.conf.js && node_modules/gulp/bin/gulp.js jscs",
"coverage-report": "node_modules/istanbul/lib/cli.js report --root ./coverage --dir ./coverage/report lcov",
"prepublish": "node_modules/gulp/bin/gulp.js build",
"build": "node_modules/gulp/bin/gulp.js build",
"demo": "node_modules/gulp/bin/gulp.js demo"
}
}