-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "three-ik",
"version": "0.1.0",
"description": "inverse kinematics for three.js",
"main": "./build/three-ik.js",
"module": "./build/three-ik.module.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"docs": "jsdoc -d docs src/*.js",
"build-demo": "rollup -c rollup.demo.config.js",
"version": "npm run build && npm run build-demo && npm add src/* demo/* examples/*",
"postversion": "git push && git push --tags && npm publish"
},
"author": "Jordan Santell <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"jsdoc": "^3.5.5",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0"
},
"keywords": [
"inverse kinematics",
"kinematics",
"ik",
"three",
"three.js"
],
"peerDependencies": {
"three": "*"
},
"repository": "https://github.com/jsantell/THREE.IK",
"dependencies": {}
}