-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "unity-to-json",
"version": "0.0.0-development",
"description": "Node.js package to convert unity scene and FBX files into JSON",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipemeneses/unity-to-json.git"
},
"license": "MIT",
"author": {
"name": "Filipe Meneses",
"email": "[email protected]",
"url": "https://github.com/filipemeneses"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"threejs",
"three.js",
"typescript",
"unity"
],
"bugs": {
"url": "https://github.com/filipemeneses/unity-to-json/issues"
},
"homepage": "https://github.com/filipemeneses/unity-to-json#readme",
"devDependencies": {
"@types/glob-watcher": "^5.0.2",
"@types/jest": "^27.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.5.9",
"@types/normalize-path": "^3.0.0",
"@typescript-eslint/parser": "^6.6.0",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^7.0.1",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-node": "^11.1.0",
"husky": "^6.0.0",
"jest": "^29.6.4",
"jest-extended": "^4.0.1",
"lint-staged": "^13.2.1",
"semantic-release": "^21.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"fbx2gltf": "^0.9.7-p1",
"glob": "^10.3.4",
"glob-watcher": "^6.0.0",
"js-yaml": "^4.1.0",
"normalize-path": "^3.0.0"
}
}