UNPKG

@tangle-js/ld-proofs

Version:

Linked Data Proofs on the Tangle. Powered by IOTA Identity & IOTA Streams

95 lines (94 loc) 3.06 kB
{ "name": "@tangle-js/ld-proofs", "version": "0.9.6-1", "description": "Linked Data Proofs on the Tangle. Powered by IOTA Identity & IOTA Streams", "type": "module", "scripts": { "build-clean": "rimraf ./es/* ./typings/*", "dist-clean": "rimraf ./dist/*", "build-compile": "tsc", "build-watch": "tsc --watch", "build-lint": "eslint src --ext .ts", "build": "npm-run-all build-clean build-compile build-lint", "test-lint": "eslint test --ext .ts", "test-run": "jest --testTimeout=120000 --verbose --coverage=false", "test": "run-s test-run", "package-esm": "esm-modules ./es ./dist/esm", "package-umd": "rollup --config rollup.config.cjs", "package": "run-s -c dist-clean package-umd package-esm package-web", "package-web": "webpack --mode=production", "dist": "run-s dist-clean build test package" }, "repository": { "type": "git", "url": "https://github.com/iotaledger/tangle.js.git", "directory": "libs/ld-proofs" }, "keywords": [ "iota", "chrysalis", "streams", "identity", "linked", "data", "proofs", "signatures" ], "engines": { "node": ">=16" }, "author": "Jose M. Cantera", "license": "Apache 2.0", "bugs": { "url": "https://github.com/iotaledger/tangle.js/issues" }, "homepage": "https://github.com/iotaledger/tangle.js/ld-proofs/README.md", "dependencies": { "@iota/identity-wasm": "0.5.1", "bs58": "^4.0.1", "elliptic": "^6.5.4", "jsonld": "^5.2.0", "@tangle-js/anchors": "0.9.3" }, "devDependencies": { "@rollup/plugin-commonjs": "^19.0.0", "@rollup/plugin-node-resolve": "^13.0.0", "@rollup/plugin-replace": "^2.4.2", "@types/jest": "^27.4.1", "@types/node": "^17.0.31", "@types/node-fetch": "^2.5.10", "@typescript-eslint/eslint-plugin": "^5.23.0", "@typescript-eslint/parser": "^5.13.0", "eslint": "^8.10.0", "eslint-plugin-header": "^3.1.1", "eslint-plugin-import": "^2.25.4", "eslint-plugin-jsdoc": "^37.9.7", "eslint-plugin-unicorn": "^41.0.0", "eslint-import-resolver-alias": "^1.1.2", "jest": "^28.1.0", "npm-run-all": "^4.1.5", "rimraf": "^3.0.2", "rollup": "^2.50.1", "rollup-plugin-terser": "^7.0.2", "ts-jest": "^28.0.2", "ts-loader": "^9.3.0", "ts-node": "^10.7.0", "typescript": "^4.6.2", "webpack": "^5.72.0", "webpack-cli": "^4.9.2", "buffer": "^6.0.3", "@tangle-js/esm-modules": "0.0.1" }, "exports": { ".": { "import": "./dist/esm/index.mjs", "require": "./dist/cjs/index.cjs" }, "./package.json": "./package.json" }, "files": [ "dist", "typings" ], "typings": "typings/index.d.ts" }