package.json 785 字节
Newer Older
B
Ben Ripkens 已提交
1 2
{
  "name": "three.js",
M
r76  
Mr.doob 已提交
3
  "version": "0.76.0",
B
Ben Ripkens 已提交
4 5 6 7 8 9 10 11
  "description": "JavaScript 3D library",
  "main": "build/three.js",
  "directories": {
    "doc": "docs",
    "example": "examples",
    "test": "test"
  },
  "scripts": {
12
    "build": "cd ./utils/build && node build.js --include common --include extras",
B
Ben Ripkens 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mrdoob/three.js"
  },
  "keywords": [
    "three",
    "three.js",
    "3d",
    "webgl"
  ],
  "author": "mrdoob",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mrdoob/three.js/issues"
  },
G
gero3 已提交
30 31
  "homepage": "http://threejs.org/",
  "devDependencies": {
32
    "argparse": "^1.0.3",
D
dubejf 已提交
33
    "jscs": "^1.13.1",
34
    "uglify-js": "^2.6.0"
G
gero3 已提交
35
  }
B
Ben Ripkens 已提交
36
}