{
  "name": "@just-js/just",
  "title": "Just js",
  "version": "1.0.0",
  "description": "The core for all your javascript proyects.",
  "main": "dist/server/index.js",
  "browser": "dist/browser/core.min.js",
  "homepage": "https://justjs.github.io",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "npm run dev",
    "dev": "npm run test:dev",
    "build": "NODE_ENV=production npm run test && node src/build && npm run style -- dist && npm run test:integration",
    "test": "npm run test:unit -- --ci",
    "test:unit": "npm run test:jest -- test/jest/unit",
    "test:integration": "npm run test:jest -- test/jest/integration",
    "test:dev": "WATCHING=true npm run test -- --watch --coverage --coverageReporters=text",
    "test:jest": "jest -c test/jest/config.js",
    "test:coverage": "npm run test -- --coverage",
    "test:coverage:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
    "doc": "./bin/document",
    "doc:jsdoc": "jsdoc -c docs/jsdoc.config.json",
    "doc:dev": "gulp",
    "doc:minify": "npm run minify:html -- --input-dir docs/public --output-dir docs/public",
    "minify:html": "html-minifier --file-ext html --collapse-whitespace --minify-css true --minify-js true",
    "lint": "eslint",
    "style": "npm run lint -- --fix",
    "pretest": "npm run lint -- . --cache",
    "precommit": "npm run test",
    "prepack": "npm run build",
    "release": "./bin/release"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/justjs/just.git"
  },
  "bugs": "https://github.com/justjs/just/issues",
  "keywords": [
    "javascript",
    "library",
    "just-js",
    "helpers"
  ],
  "files": [
    "dist/**/*.js"
  ],
  "author": {
    "name": "Alexis Puga",
    "email": "alexispuga@pm.me",
    "url": "https://github.com/AlexisPuga"
  },
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@alexispuga/jsdoc-template": "^1.1.2",
    "coveralls": "^3.1.0",
    "eslint": "^6.8.0",
    "eslint-config-justjs": "github:justjs/eslint-config-justjs#v0.1.0",
    "eslint-plugin-es5": "^1.5.0",
    "eslint-plugin-jest": "^22.21.0",
    "gulp": "^4.0.2",
    "gzip-size": "^5.1.1",
    "html-minifier": "^4.0.0",
    "jest": "^24.9.0",
    "jsdoc": "^3.6.5",
    "live-server": "^1.2.1",
    "mock-xmlhttprequest": "^6.2.0",
    "requirejs": "^2.3.6",
    "uglify-js": "^3.12.4"
  },
  "dependencies": {}
}
