-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "tiled-property-flattener",
"version": "1.1.1",
"description": "Provides a way to parse Tiled project files (.tiled-project) and maps into typescript usable format,. Additionally, it also flattens the properties of nested Tiled classes into the root Tiled class's/object's/layer's own properties, as if it had inherited the properties, unless otherwise specified.",
"main": "dist/tiled_property_flattener.min.js",
"types": "dist/tiled_property_flattener.d.ts",
"type": "module",
"scripts": {
"start": "node ./flatten_cli.js",
"test": "jest --config jestconfig.json",
"build": "npm run bundle && tsc",
"bundle": "esbuild src/tiled_property_flattener.ts --bundle --minify --format=esm --outfile=dist/tiled_property_flattener.min.js",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/rui-han-crh/tiled-property-flattener.git"
},
"keywords": [
"tiled",
"project",
"map",
"parser",
"flattener",
"json",
"property",
"types"
],
"files": [
"dist",
"flatten_cli.js"
],
"author": "Chen Ruihan (rui-han-crh)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"prettier": "2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/minimist": "^1.2.2",
"lodash": "^4.17.21",
"minimist": "^1.2.8"
}
}