gitiumiota
Version:
IOTA Client Reference Implementation
90 lines (89 loc) • 2.39 kB
JSON
{
"name": "gitiumiota",
"version": "1.0.0-alpha.1",
"description": "IOTA Client Reference Implementation",
"scripts": {
"init": "npm i && lerna bootstrap",
"test": "lerna exec -- npm test",
"test-ci": "lerna bootstrap && lerna exec -- npm run test-ci && npm run lint",
"test-android": "lerna bootstrap && lerna run test-android --stream",
"test-android-ci": "lerna bootstrap && lerna run test-android-ci --stream",
"test:staged": "node scripts/test-staged.js",
"lint": "tslint --project .",
"docs": "lerna run docs"
},
"contributors": [
"Dominik Schiener <dom@iota.org> (https://iota.org)",
"Edward Greve <edward@iota.org> (https://github.com/anyong)",
"Chris Dukakis <chris.dukakis@iota.org> (https://github.com/chrisdukakis)"
],
"ava": {
"files": [
"packages/**/out/**/test/*.test.js",
"packages/**/out/**/test/integration/*.test.js"
],
"failFast": true,
"failWithoutAssertions": false,
"compileEnhancements": false,
"verbose": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && node ./scripts/test-staged.js",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts}": [
"tslint --fix",
"git add"
],
"*.{js,ts,json}": [
"prettier --write",
"git add"
]
},
"keywords": [
"iota",
"tangle",
"library",
"javascript",
"nodejs",
"API"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iotaledger/iota.lib.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/iota.lib.js.git"
},
"dependencies": {
"@types/bluebird": "^3.5.25",
"@types/node": "^12.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^7.2.1",
"ava": "^0.25.0",
"dmd-clear": "^0.1.2",
"husky": "^3.0.0",
"jsdoc-babel": "^0.5.0",
"lerna": "^3.14.1",
"lint-staged": "^9.0.0",
"nyc": "^14.0.0",
"prettier": "^1.10.2",
"staged-git-files": "^1.1.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"typescript": "^3.1.3"
},
"homepage": "https://github.com/iotaledger/iota.lib.js#readme",
"main": "commitlint.config.js",
"directories": {
"example": "examples"
},
"author": ""
}