forked from hbxeagle/sprites-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "sprites-cli",
"description": "A command-line interface for css sprites",
"version": "0.1.0",
"main": "dist/sprites-cli.js",
"bin": {
"sprt": "bin/command"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/index.js",
"build": "gulp build",
"pretest": "npm run build & npm link",
"prepublish": "npm run build"
},
"dependencies": {
"commander": "^2.9.0",
"gulp": "^3.9.1",
"gulp-csso": "^2.0.0",
"gulp-imagemin": "^3.1.1",
"gulp-plumber": "^1.1.0",
"gulp.spritesmith": "^6.2.1",
"vinyl-buffer": "^1.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"chai": "^3.5.0",
"del": "^2.1.0",
"gulp": "^3.6.0",
"gulp-babel": "^6.1.0",
"gulp-debug": "^4.0.0",
"gulp-load-plugins": "^0.7.0",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.1",
"mocha": "^2.4.5"
},
"keywords": [
"css",
"sprites",
"gulp.spritesmith",
"rem",
"command",
"line",
"cli"
],
"author": "hbxeagle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hbxeagle/sprites-cli.git"
},
"bugs": {
"url": "https://github.com/hbxeagle/sprites-cli/issues"
},
"homepage": "https://github.com/hbxeagle/sprites-cli#readme"
}