forked from 2createStudio/postcss-sprites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "postcss-sprites",
"version": "4.0.0",
"description": "Generate spritesheets from stylesheets",
"main": "lib/index.js",
"keywords": [
"postcss-plugin",
"postcss",
"css",
"spritesheet",
"spritesmith",
"sprite",
"png",
"svg"
],
"scripts": {
"test": "./node_modules/.bin/ava test/*.js --verbose --serial",
"build": "./node_modules/.bin/babel src/ --out-dir lib/",
"watch": "./node_modules/.bin/babel --watch src/ --out-dir lib/",
"prepublish": "npm test",
"pretest": "npm run build"
},
"repository": "2createStudio/postcss-sprites",
"author": "2createStudio",
"license": "MIT",
"bugs": "https://github.com/2createStudio/postcss-sprites/issues",
"homepage": "https://github.com/2createStudio/postcss-sprites#readme",
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.4.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.3.13"
},
"dependencies": {
"bluebird": "^3.1.1",
"fs-extra": "^0.26.4",
"lodash": "^4.0.0",
"postcss": "^5.0.14",
"spritesmith": "^3.0.1",
"svg-sprite": "^1.3.5"
},
"typings": "./typings.d.ts"
}