apuliasoft/j2se-js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "j2se-js",
  "version": "0.0.0-development",
  "description": "j2se-js : a JavaScript porting of j2se framework",
  "main": "src/index.ts",
  "directories": {
    "src": "src",
    "doc": "docs",
    "test": "test"
  },
  "scripts": {
    "commit": "git-cz",
    "test:watch": "mocha -r ts-node/register **/*.spec.ts --watch-extensions ts --watch",
    "test": "nyc -e .ts -x **/*.spec.ts mocha -r ts-node/register **/*.spec.ts",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "docs": "compodoc -t -p tsconfig.json -d docs -n \"J2SE to JavaScript\" --theme readthedocs --disableGraph --disablePrivateOrInternalSupport",
    "build": "./build.sh",
    "lint": "tslint -p tsconfig.json",
    "release": "semantic-release pre && ./release.sh && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/apuliasoft/j2se-js.git"
  },
  "keywords": [
    "j2se",
    "java",
    "util"
  ],
  "author": "ApuliaSoft <info@apuliasoft.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/apuliasoft/j2se-js/issues"
  },
  "homepage": "https://apuliasoft.github.io/j2se-js",
  "devDependencies": {
    "@types/chai": "~4.1.0",
    "@types/mocha": "~5.2.0",
    "chai": "~4.1.0",
    "commitizen": "~2.10.0",
    "compodoc": "~0.0.0",
    "coveralls": "~3.0.0",
    "cz-conventional-changelog": "~2.1.0",
    "mocha": "~5.2.0",
    "mocha-lcov-reporter": "~1.3.0",
    "nyc": "~13.0.0",
    "rollup": "~0.60.0",
    "rollup-plugin-typescript": "~0.8.0",
    "rollup-plugin-uglify": "~4.0.0",
    "semantic-release": "~15.5.0",
    "ts-loader": "~4.4.0",
    "ts-node": "~6.1.0",
    "tslint": "~5.10.0",
    "typescript": "~2.9.0",
    "yargs": "~11.0.0"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  }
}