-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "webpack-texture-packer",
"version": "1.0.2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Ilya Malanin",
"url": "https://github.com/mayakwd"
},
"homepage": "https://github.com/mayakwd/webpack-texture-packer",
"scripts": {
"setup": "yarn install",
"build": "tsc",
"lint": "yarn tslint --fix -c ./tslint.json 'src/**/*.ts'",
"test": "jest"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@types/find-cache-dir": "^3.2.1",
"@types/jest": "^27.0.2",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.10.2",
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^3.2.0",
"jest": "^27.2.4",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"tslib": "^2.3.1"
},
"dependencies": {
"find-cache-dir": "^3.3.2",
"free-tex-packer-core": "^0.3.4",
"minimatch": "^3.0.4",
"readdir-enhanced": "^6.0.4",
"spark-md5": "^3.0.1"
},
"peerDependencies": {
"webpack": "^5.55.1"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
]
}