-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 998 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 998 Bytes
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
{
"name": "three.py",
"description": "Utilities for interfacing Python with three.js",
"version": "0.79.0",
"author": "Jeffrey Zitelli <jeffrey.zitelli@gmail.com> (https://github.com/jzitelli)",
"license": "MIT",
"homepage": "https://github.com/jzitelli/three.py",
"repository": {
"type": "git",
"url": "git+https://github.com/jzitelli/three.py.git"
},
"bugs": "https://github.com/jzitelli/three.py/issues",
"files": [
"examples/",
"js/",
".eslintrc.json",
"LICENSE",
"README.md"
],
"devDependencies": {
"eslint": "*",
"cannon": "git://github.com/jzitelli/cannon.js.git",
"yawvrb": "git://github.com/jzitelli/yawvrb.js.git#dev",
"webvr-polyfill": "git://github.com/jzitelli/webvr-polyfill.git",
"three": "git://github.com/jzitelli/three.js.git#dev"
},
"scripts": {
"lint": "eslint js/*.js && eslint examples/js/*.js",
"test": "npm run lint && cd examples && python flask_app.py",
"start": "npm run test"
}
}