-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "blender-iks-to-fks",
"version": "2.0.3",
"description": "A Blender script that takes a mesh and armature that use IKs and other non-deformation bones and creates a new mesh and armature that uses only FK bones",
"main": "bin/ik2fk.js",
"bin": {
"ik2fk": "./bin/ik2fk.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chinedufn/blender-iks-to-fks.git"
},
"keywords": [
"blender",
"ik",
"fk",
"inverse",
"forward",
"kinematic",
"convert",
"export",
"bone",
"joint",
"rig",
"armature",
"mesh"
],
"author": "Chinedu Francis Nwafili <frankie.nwafili@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chinedufn/blender-iks-to-fks/issues"
},
"homepage": "https://github.com/chinedufn/blender-iks-to-fks#readme",
"devDependencies": {
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"dependencies": {
"minimist": "^1.2.0"
}
}