-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tiledmap-loader",
"author": "yinjie",
"version": "0.1.10",
"description": "For projects such as pixijs etx. , access to the visual editing capabilities of the tiled map tool.",
"main": "dist/index.js",
"scripts": {
"build:loader": "rm -rf dist && cross-env NODE_ENV=production babel src -d dist --copy-files",
"build:util": "rm -rf util && cross-env NODE_ENV=production webpack",
"build": "npm run build:util && npm run build:loader",
"prepublishOnly": "npm run build",
"ci": "echo true"
},
"keywords": [
"webpack",
"pixijs",
"tiled"
],
"files": [
"dist",
"util"
],
"engines": {
"node": ">= 10.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yj1438/tiledmap-loader.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yj1438/tiledmap-loader/issues"
},
"homepage": "https://github.com/yj1438/tiledmap-loader#readme",
"dependencies": {
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"loader-utils": "^2.0.0",
"sort-keys": "^4.2.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"yaml-js": "^0.2.3"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0",
"webpack-cli": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/runtime-corejs3": "^7.14.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"yargs": "^17.0.1"
}
}