UNPKG

meteor-nem-library

Version:
99 lines (98 loc) 2.99 kB
{ "name": "meteor-nem-library", "version": "1.0.1", "description": "Meteor NIS1 Library", "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 120000", "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/integration_test ./dist/e2e --timeout 90000", "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", "Meteor", "Blockstart", "CACHE", "Library", "API", "RX" ], "license": "MIT", "contributors": [ "Aleix <aleix602@gmail.com>", "Guillem <guillemchain@gmail.com>", "Jacob <jacob@blockstart.io>" ], "repository": { "type": "git", "url": "https://github.com/blockstart/blockstart-nis1-sdk" }, "bugs": { "url": "https://github.com/blockstart/blockstart-nis1-sdk/issues", "email": "jacob@blockstart.io" }, "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": "^5.2.0", "mocha-lcov-reporter": "^1.3.0", "mocha-typescript": "^1.1.17", "nock": "^9.6.1", "nyc": "^13.0.1", "ts-node": "^3.3.0", "typedoc": "^0.12.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.10", "nem-sdk": "^1.6.7", "request": "^2.88.0", "request-promise-core": "^1.1.1", "request-promise-native": "^1.0.5", "rxjs": "5.5.2", "sockjs-client": "^1.1.5", "tweetnacl": "^1.0.0", "typedocs": "^0.6.5", "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" ], "nyc": { "exclude": [ "**/*.spec.js" ] } }