{
    "name": "dcorejs",
    "version": "5.2.0",
    "description": "Javascript library to work with Dcore blockchain network.",
    "keywords": [
        "blockchain",
        "dcore_js"
    ],
    "main": "lib/dcorejs.js",
    "module": "lib/dcorejs.js",
    "types": "dist/types/dcorejs.d.ts",
    "author": "DECENT Foundation <info@decent.ch>",
    "repository": {
        "type": "git",
        "url": "https://github.com/DECENTfoundation/dcorejs.git"
    },
    "directories": {
        "bin": "./dist",
        "lib": "./dist"
    },
    "license": "MIT",
    "engines": {
        "node": ">=8.0.0",
        "npm": ">=5.0.0"
    },
    "scripts": {
        "start": "tsc -w & webpack --config webpack.config.js --watch",
        "prebuild": "rimraf dist && rimraf lib",
        "build": "tsc && webpack --config webpack.config.js && npm run generate-docs",
        "generate-docs": "rimraf dist/docs && typedoc --options typedoc.json",
        "test": "npm run test:unit && npm run test:integ",
        "test:unit": "npm-run-parallel test:unit:server test:unit:client",
        "test:integ": "npm-run-parallel test:integ:client test:integ:server",
        "test:e2e": "npm-run-parallel test:e2e:client test:e2e:server",
        "test:unit:server": "mocha --exit -r ts-node/register ./src/test/server/unit/*.test.ts",
        "test:unit:client": "./node_modules/karma-cli/bin/karma start ./karma.conf.unit.js --single-run",
        "test:integ:server": "mocha --exit -r ts-node/register ./src/test/server/integration/*.test.ts",
        "test:integ:client": "./node_modules/karma-cli/bin/karma start ./karma.conf.integ.js --single-run",
        "test:e2e:server": "mocha --exit -r ts-node/register ./src/test/server/endToEnd/*.test.ts",
        "test:e2e:client": "./node_modules/karma-cli/bin/karma start ./karma.conf.e2e.js --single-run",
        "ci": "rm -rf node_modules && npm i"
    },
    "devDependencies": {
        "@types/chai": "4.1.1",
        "@types/concat-stream": "1.6.0",
        "@types/mocha": "2.2.46",
        "@types/node": "8.0.47",
        "chai": "4.1.2",
        "colors": "^1.1.2",
        "cross-env": "5.1.1",
        "karma": "^2.0.2",
        "karma-chai": "0.1.0",
        "karma-chrome-launcher": "2.2.0",
        "karma-cli": "1.0.1",
        "karma-mocha": "1.3.0",
        "karma-requirejs": "1.1.0",
        "karma-sinon": "^1.0.5",
        "karma-typescript": "^3.0.13",
        "lodash.camelcase": "^4.3.0",
        "mocha": "5.0.0",
        "mocha-chrome": "^1.1.0",
        "mocha-phantomjs": "4.1.0",
        "npm-run-parallel": "0.6.0",
        "pre-push": "0.1.1",
        "prompt": "^1.0.0",
        "replace-in-file": "^3.0.0-beta.2",
        "requirejs": "2.3.5",
        "rimraf": "2.6.2",
        "ts-jest": "21.2.4",
        "ts-node": "4.1.0",
        "tslint": "5.8.0",
        "typedoc": "^0.11.1",
        "typescript": "2.5.3",
        "webpack": "3.8.1"
    },
    "dependencies": {
        "@compodoc/compodoc": "^1.1.3",
        "axios": "^0.18.0",
        "big-integer": "^1.6.40",
        "bluebird": "3.5.1",
        "crypto-js": "3.1.9-1",
        "dcorejs-lib": "^1.6.2",
        "ipfs-api": "15.0.1",
        "js-sha512": "^0.7.1",
        "jsdoc": "^3.5.5",
        "moment": "^2.22.2",
        "ripemd160": "2.0.1",
        "sinon": "^6.1.4",
        "ssl-root-cas": "1.2.4",
        "typedoc-plugin-external-module-name": "^1.1.1"
    },
    "prettier": {
        "tabWidth": 4
    },
    "pre-push": [
        "build",
        "test"
    ]
}
