UNPKG

identifi-lib

Version:

Basic tools for reading and writing Identifi messages and identities.

88 lines (87 loc) 3.03 kB
{ "name": "identifi-lib", "version": "0.0.90", "description": "Basic tools for reading and writing Identifi messages and identities.", "main": "cjs/index.js", "browser": "dist/identifiLib.js", "module": "es/index.js", "jsxnext:main": "es/index.js", "jest": { "testURL": "http://localhost/", "bail": true, "verbose": true }, "files": [ "dist", "cjs", "es", "src" ], "engines": { "node": ">=4.0.0" }, "scripts": { "release": "release-it", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", "lint": "npm run lint:eslint", "lint:eslint": "eslint src/*.js", "lint:flow": "flow --color always", "test": "clear && jest", "test:coverage": "jest --coverage ", "test:watch": "clear && jest --watch", "test:debug": "node --inspect node_modules/.bin/jest --runInBand", "lint:test": "npm run lint && npm run test:coverage", "build": "clear && npm run build:cjs && npm run lint:test && npm run build:es && npm run build:umd && npm run build:docs", "build:watch": "clear && rimraf cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir cjs", "build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es", "build:cjs": "rimraf cjs && cross-env BABEL_ENV=cjs babel src --out-dir cjs", "build:umd": "rimraf dist && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c", "build:docs": "documentation build src/** -f html -o docs" }, "keywords": [], "author": "Martti Malmi (martti.malmi@iki.fi)", "license": "MIT", "repository": "mmalmi/identifi-lib", "devDependencies": { "@babel/core": "^7.0.0", "babel-cli": "^6.26.0", "babel-core": "^6.26.3", "babel-eslint": "^9.0.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-external-helpers": "^6.22.0", "babel-plugin-transform-flow-strip-types": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-env": "^1.7.0", "babel-preset-es2015": "^6.24.1", "coveralls": "^3.0.2", "cross-env": "^5.2.0", "documentation": "^9.1.1", "eslint": "^5.4.0", "eslint-config-devine": "^1.8.1", "eslint-plugin-babel": "^5.1.0", "flow-bin": "^0.79.1", "jest": "^23.5.0", "libp2p-connection-manager": "0.0.2", "release-it": "^7.6.0", "rimraf": "^2.6.2", "rollup": "^0.65.0", "rollup-plugin-babel": "^3.0.7", "rollup-plugin-commonjs": "^9.1.6", "rollup-plugin-filesize": "^4.0.1", "rollup-plugin-hypothetical": "^2.1.0", "rollup-plugin-ignore": "^1.0.4", "rollup-plugin-json": "^3.0.0", "rollup-plugin-node-builtins": "^2.1.2", "rollup-plugin-node-globals": "^1.2.1", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-terser": "^1.0.1" }, "dependencies": { "@trust/webcrypto": "^0.9.2", "create-hash": "^1.2.0", "gun": "^0.9.9999991", "identicon.js": "^2.3.3", "node-webcrypto-ossl": "^1.0.39", "text-encoding": "^0.7.0" } }