package.json 969 字节
Newer Older
B
Ben Ripkens 已提交
1
{
2 3
  "name": "three",
  "version": "0.77.1",
B
Ben Ripkens 已提交
4 5
  "description": "JavaScript 3D library",
  "main": "build/three.js",
6 7 8 9 10 11 12 13 14 15 16
  "files": [
    "package.json",
    "LICENSE",
    "README.md",
    "build/three.js",
    "build/three.min.js",
    "src",
    "examples/js",
    "examples/fonts",
    "bower.json"
  ],
B
Ben Ripkens 已提交
17 18 19 20 21 22
  "directories": {
    "doc": "docs",
    "example": "examples",
    "test": "test"
  },
  "scripts": {
23
    "build": "cd ./utils/build && node build.js --include common --include extras",
B
Ben Ripkens 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    "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 已提交
41 42
  "homepage": "http://threejs.org/",
  "devDependencies": {
43
    "argparse": "^1.0.3",
D
dubejf 已提交
44
    "jscs": "^1.13.1",
45
    "uglify-js": "^2.6.0"
G
gero3 已提交
46
  }
B
Ben Ripkens 已提交
47
}