-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.68 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "image-sprite-webpack-plugin",
"version": "0.3.0",
"description": "Image Sprite Plugin for Webpack.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rm -rf dist"
},
"author": "Shim Heungwoon <hw.shim@navercorp.com>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"css": "^3.0.0",
"figures": "^3.2.0",
"spritesmith": "^3.4.1",
"vinyl": "^3.0.0",
"webpack-sources": "^3.2.3"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/naver/image-sprite-webpack-plugin.git"
},
"keywords": [
"webpack",
"webpack5",
"webpack-plugin",
"stylesheet",
"css-loader",
"css",
"spritesmith",
"sprite"
],
"devDependencies": {
"@types/node": "^25.0.9",
"@types/vinyl": "^2.0.12",
"css-loader": "^6.8.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"memfs": "^4.6.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.8.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"webpack": "^5.89.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}