UNPKG

cache-typescript-sdk

Version:
98 lines (97 loc) 3.02 kB
{ "name": "cache-typescript-sdk", "version": "0.0.1", "description": "Blockstart NIS1 SDK", "scripts": { "pretest": "npm run build", "test": "mocha --ui bdd --recursive ./dist/test ./dist/integration_test --timeout 60000", "test:e2e": "mocha --ui bdd --recursive ./dist/e2e --timeout 240000", "test:int": "mocha --ui bdd --recursive ./dist/integration_test --timeout 10000", "test:unit": "mocha --ui bdd --recursive ./dist/test", "test:all": "npm run build && mocha --ui bdd --recursive ./dist/test ./dist/testCache ./dist/integration_test ./dist/e2e ./dist/e2eCache --timeout 240000", "test:cov": "nyc npm run test && nyc report --reporter=text-lcov --timeout 90000 | coveralls", "build": "rm -rf dist && tsc && npm run copyjson && npm run copyvendor", "gen:docs": "typedoc --out ts-docs/ src/", "copyjson": "cp -r test/infrastructure/account/responses/ dist/test/infrastructure/account/responses/ && cp -r integration_test/infrastructure/account/responses/ dist/integration_test/infrastructure/account/responses/", "copyvendor": "cp -r src/vendor/ dist/src/vendor/" }, "keywords": [ "NEM", "CACHE", "Library", "API", "RX" ], "license": "MIT", "contributors": [ "Aleix <aleix602@gmail.com>", "Guillem <guillemchain@gmail.com>", "Jacob <jacob@devslopes.com>" ], "repository": { "type": "git", "url": "https://github.com/blockstart/blockstart-nis1-sdk" }, "bugs": { "url": "https://github.com/blockstart/blockstart-nis1-sdk", "email": "jacob@devslopes.com" }, "devDependencies": { "@types/chai": "^4.0.4", "@types/js-base64": "^2.1.5", "@types/lodash": "^4.14.78", "@types/mocha": "^2.2.43", "@types/nock": "^8.2.1", "@types/node": "^8.0.46", "@types/request": "^2.0.6", "@types/request-promise-native": "^1.0.8", "@types/sockjs-client": "^1.0.32", "@types/utf8": "^2.1.6", "chai": "^4.1.2", "coveralls": "^3.0.0", "mocha": "^3.5.3", "mocha-lcov-reporter": "^1.3.0", "mocha-typescript": "^1.1.11", "nock": "^9.0.24", "nyc": "^11.2.1", "ts-node": "^3.3.0", "typedoc": "^0.8.0", "typescript": "^2.6.2" }, "dependencies": { "@stomp/stompjs": "^3.1.2", "crypto-js": "^3.1.9-1", "fs.realpath": "^1.0.0", "get-random-values": "^1.2.0", "js-base64": "^2.3.2", "js-joda": "^1.6.1", "lodash": "^4.17.4", "nem-sdk": "1.5.1", "request": "^2.83.0", "request-promise-core": "^1.1.1", "request-promise-native": "^1.0.5", "rxjs": "5.5.2", "sockjs-client": "^1.1.4", "tweetnacl": "^1.0.0", "typedocs": "^0.6.3", "utf8": "^2.1.2", "websocket": "^1.0.25" }, "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "LICENSE", "History.md", "README.md", "dist/src/", "dist/index.d.ts", "dist/index.js", "dist/index.js.map", "node-endpoint-config.json" ], "nyc": { "exclude": [ "**/*.spec.js" ] } }