-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
114 lines (114 loc) · 3.89 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "babylon-mtoon-material",
"version": "5.1.1",
"description": "Unity MToon Shader WebGL porting with babylon.js",
"license": "MIT",
"author": {
"email": "yamagishi.iloop@gmail.com",
"name": "Masaru Yamagishi",
"url": "https://github.com/il-m-yamagishi"
},
"repository": {
"type": "git",
"url": "https://github.com/virtual-cast/babylon-mtoon-material.git"
},
"keywords": [
"babylon.js",
"VRM",
"MToon",
"WebGL",
"Material"
],
"files": [
"dist/**/*",
"!dist/test/**/*"
],
"typings": "dist/index.d.ts",
"main": "dist/index.module.js",
"devDependencies": {
"@babylonjs/core": "^5.19.0",
"@babylonjs/gui": "^5.19.0",
"@babylonjs/gui-editor": "^5.19.0",
"@babylonjs/inspector": "^5.19.0",
"@babylonjs/loaders": "^5.19.0",
"@babylonjs/materials": "^5.19.0",
"@babylonjs/serializers": "^5.19.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^14.18.22",
"@types/react": ">=16.7.3",
"@types/react-dom": ">=16.0.9",
"@typescript-eslint/eslint-plugin": "~5.16.0",
"@typescript-eslint/parser": "~5.16.0",
"babylonjs-gltf2interface": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-prettier": "~4.0.0",
"gh-pages": "^4.0.0",
"http-server": "^14.1.1",
"jest": "^28.1.3",
"jest-dev-server": "^6.1.1",
"jest-puppeteer": "^6.1.1",
"prettier": "^2.7.1",
"puppeteer": "^15.4.1",
"semantic-release": "^19.0.3",
"ts-loader": "^9.2.6",
"tslib": "^2.4.0",
"typescript": "~4.6.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"@babylonjs/core": "^5.19.0"
},
"scripts": {
"build": "webpack",
"build:gh-pages": "webpack --config webpack.test.config.js",
"build:test": "yarn build:gh-pages",
"lint": "yarn lint:check && yarn lint:fix",
"lint:check": "eslint src",
"lint:fix": "eslint src --fix",
"format": "yarn format:check && yarn format:fix",
"format:check": "prettier --check src",
"format:fix": "prettier --write src",
"debug": "webpack serve --config webpack.test.config.js",
"release": "semantic-release",
"release:gh-pages": "gh-pages -d test -u \"Masaru Yamagishi <m-yamagishi@virtualcast.jp>\" -m \"ci(gh-pages): update gh-pages [skip ci]\"",
"test": "jest test/jest.test.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/index.js",
"label": "window.MToonMaterial assignation File"
},
{
"path": "dist/index.module.js",
"label": "UMD File"
},
{
"path": "dist/mtoon-material.d.ts",
"label": "Type definition File"
}
]
}
],
"@semantic-release/npm",
"@semantic-release/git"
]
}
}