-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "webpack-spritesmith",
"version": "1.1.0",
"description": "Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins",
"main": "lib/Plugin.js",
"scripts": {
"build": "rimraf lib && babel src -d lib",
"prepack": "npm run build",
"dev": "npm run build && rimraf dev/src/generated && webpack --config dev/config.js",
"dev-watch": "npm run build && webpack --config dev/config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixtur/webpack-spritesmith.git"
},
"keywords": [
"icons",
"sprites",
"spritesmith",
"webpack"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mixtur/webpack-spritesmith/issues"
},
"homepage": "https://github.com/mixtur/webpack-spritesmith#readme",
"dependencies": {
"gaze": "^1.1.3",
"loader-utils": "^1.2.3",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"mz": "^2.7.0",
"spritesheet-templates": "^10.4.2",
"spritesmith": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/preset-env": "7.1.0",
"css-loader": "^3.2.0",
"file-loader": "^1.1.11",
"rimraf": "^2.6.3",
"style-loader": "^0.20.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}