package.json 648 字节
Newer Older
B
Ben Ripkens 已提交
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
{
  "name": "three.js",
  "version": "0.71.0",
  "description": "JavaScript 3D library",
  "main": "build/three.js",
  "directories": {
    "doc": "docs",
    "example": "examples",
    "test": "test"
  },
  "scripts": {
    "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 已提交
29 30 31 32
  "homepage": "http://threejs.org/",
  "devDependencies": {
    "jscs": "^1.13.1"
  }
B
Ben Ripkens 已提交
33
}