Skip to content
Snippets Groups Projects
package.json 2.71 KiB
Newer Older
Mathis Neumann's avatar
Mathis Neumann committed
  "name": "iobserve-ui",
  "version": "0.9.0",
Mathis Neumann's avatar
Mathis Neumann committed
  "description": "Web based user interface for the iObserve project",
  "private": true,
  "directories": {
    "doc": "docs",
    "test": "tests"
  },
  "scripts": {
    "build": "npm run build-docs && ember build",
    "start": "ember server",
    "test": "npm run lint-docs && ember test",
    "lint-docs": "./node_modules/.bin/yuidoc --lint app",
    "dev-docs": "./node_modules/.bin/yuidoc --server 5000 app",
    "build-docs": "./node_modules/.bin/yuidoc app"
  },
  "repository": "",
  "engines": {
    "node": ">= 0.10.0"
  },
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "broccoli-asset-rev": "^2.2.0",
    "ember-ajax": "0.7.1",
  },
  "dependencies": {
  },
  "yuidoc": {
    "options": {
      "paths": [
        "app"
      ],
      "exclude": "vendor",
      "outdir": "public/docs",
      "linkNatives": true,
      "quiet": true,
      "parseOnly": false,
      "lint": false,
      "themedir": "node_modules/yuidoc-bootstrap-theme",
      "helpers": [
        "node_modules/yuidoc-bootstrap-theme/helpers/helpers.js"
      ],
      "external": {
        "data": [
          {
            "base": "http://emberjs.com/api/",
            "json": "http://builds.emberjs.com/tags/v2.4.0/ember-docs.json"
          },
          {
            "base": "http://emberjs.com/api/data/",
            "json": "http://builds.emberjs.com/tags/v2.4.0/ember-data-docs.json"
          }
        ]
      }
    }