forked from glebmachine/postcss-easysprites
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 KB
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
{
"name": "postcss-easysprites",
"version": "0.1.8",
"description": "PostCSS plugin that generate sprites, like postcss-sprites, but proper way",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sprite",
"sprites"
],
"author": "Gleb Mikheev <mikheev@betaagency.ru>",
"license": "MIT",
"repository": "glebmachine/postcss-easysprites",
"bugs": {
"url": "https://github.com/glebmachine/postcss-easysprites/issues"
},
"homepage": "https://github.com/glebmachine/postcss-easysprites",
"dependencies": {
"async": "1.5.0",
"gulp-util": "3.0.7",
"lodash": "4.13.1",
"md5": "2.0.0",
"mkdirp": "0.5.1",
"postcss": "5.0.10",
"q": "1.4.1",
"spritesmith": "3.1.0"
},
"devDependencies": {
"chai": "3.4.1",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.9.2",
"eslint-watch": "2.1.11",
"git-hooks": "1.0.2",
"gulp": "3.9.0",
"gulp-eslint": "2.0.0",
"gulp-jscs": "4.0.0",
"gulp-jscs-stylish": "1.3.0",
"gulp-jshint": "2.0.0",
"gulp-mocha": "2.2.0",
"gulp-rename": "1.2.2",
"gulp-postcss": "6.0.1",
"jscs": "3.0.4",
"jshint": "2.8.0",
"jshint-stylish": "2.1.0"
},
"scripts": {
"test": "gulp test",
"lint": "eslint --fix index.js",
"lint:watch": "esw --fix --watch index.js"
}
}