updates
This commit is contained in:
132
package.json
132
package.json
@@ -1,69 +1,69 @@
|
|||||||
{
|
{
|
||||||
"name": "@blockstorage/repertory-js",
|
"name": "@blockstorage/repertory-js",
|
||||||
"version": "2.0.0-r1",
|
"version": "2.0.0-r1",
|
||||||
"description": "A Node.js module for interfacing with Repertory's remote mount API",
|
"description": "A Node.js module for interfacing with Repertory's remote mount API",
|
||||||
"author": "scott.e.graves@protonmail.com",
|
"author": "scott.e.graves@protonmail.com",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "https://bitbucket.org/blockstorage/repertory-js",
|
"homepage": "https://git.fithgrid.com/blockstorage/repertory-js",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://bitbucket.org/blockstorage/repertory-js.git"
|
"url": "https://git.fifthgrid.com/blockstorage/repertory-js.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"repertory",
|
"repertory",
|
||||||
"repertory-ui",
|
"repertory-ui",
|
||||||
"library",
|
"library",
|
||||||
"mount",
|
"mount",
|
||||||
"fuse",
|
"fuse",
|
||||||
"winfsp",
|
"winfsp",
|
||||||
"blockchain",
|
"blockchain",
|
||||||
"decentralized",
|
"decentralized",
|
||||||
"cloud",
|
"cloud",
|
||||||
"storage",
|
"storage",
|
||||||
"altcoin",
|
"altcoin",
|
||||||
"cryptocurrency"
|
"cryptocurrency"
|
||||||
],
|
],
|
||||||
"main": "dist/cjs/index.js",
|
"main": "dist/cjs/index.js",
|
||||||
"module": "dist/mjs/index.js",
|
"module": "dist/mjs/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"import": "./dist/mjs/index.js",
|
"import": "./dist/mjs/index.js",
|
||||||
"require": "./dist/cjs/index.js"
|
"require": "./dist/cjs/index.js"
|
||||||
}
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"dist/cjs",
|
|
||||||
"dist/mjs"
|
|
||||||
],
|
|
||||||
"scripts": {
|
|
||||||
"build": "rollup -c && ./fixup",
|
|
||||||
"test": "jest",
|
|
||||||
"prepublish": "rollup -c --silent && ./fixup"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@stablelib/xchacha20poly1305": "^1.0.1",
|
|
||||||
"int64-buffer": "^1.0.0",
|
|
||||||
"socket-pool": "^1.2.3",
|
|
||||||
"text-encoding": "^0.7.0",
|
|
||||||
"uuid": "^8.3.2"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@babel/core": "^7.14.3",
|
|
||||||
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
|
||||||
"@babel/plugin-proposal-private-methods": "^7.13.0",
|
|
||||||
"@babel/plugin-transform-async-to-generator": "^7.13.0",
|
|
||||||
"@babel/plugin-transform-regenerator": "^7.13.15",
|
|
||||||
"@babel/plugin-transform-runtime": "^7.14.3",
|
|
||||||
"@babel/preset-env": "^7.14.2",
|
|
||||||
"@rollup/plugin-babel": "^5.3.0",
|
|
||||||
"@rollup/plugin-commonjs": "^15.1.0",
|
|
||||||
"@rollup/plugin-json": "^4.0.0",
|
|
||||||
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
||||||
"@types/jest": "^26.0.23",
|
|
||||||
"babel-eslint": "^10.1.0",
|
|
||||||
"jest": "^26.6.3",
|
|
||||||
"rollup": "^2.50.0",
|
|
||||||
"rollup-plugin-eslint": "^7.0.0",
|
|
||||||
"rollup-plugin-terser": "^7.0.2"
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"dist/cjs",
|
||||||
|
"dist/mjs"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"build": "rollup -c && ./fixup",
|
||||||
|
"test": "jest",
|
||||||
|
"prepublish": "rollup -c --silent && ./fixup"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@stablelib/xchacha20poly1305": "^1.0.1",
|
||||||
|
"int64-buffer": "^1.0.0",
|
||||||
|
"socket-pool": "^1.2.3",
|
||||||
|
"text-encoding": "^0.7.0",
|
||||||
|
"uuid": "^8.3.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.14.3",
|
||||||
|
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
||||||
|
"@babel/plugin-proposal-private-methods": "^7.13.0",
|
||||||
|
"@babel/plugin-transform-async-to-generator": "^7.13.0",
|
||||||
|
"@babel/plugin-transform-regenerator": "^7.13.15",
|
||||||
|
"@babel/plugin-transform-runtime": "^7.14.3",
|
||||||
|
"@babel/preset-env": "^7.14.2",
|
||||||
|
"@rollup/plugin-babel": "^5.3.0",
|
||||||
|
"@rollup/plugin-commonjs": "^15.1.0",
|
||||||
|
"@rollup/plugin-json": "^4.0.0",
|
||||||
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
||||||
|
"@types/jest": "^26.0.23",
|
||||||
|
"babel-eslint": "^10.1.0",
|
||||||
|
"jest": "^26.6.3",
|
||||||
|
"rollup": "^2.50.0",
|
||||||
|
"rollup-plugin-eslint": "^7.0.0",
|
||||||
|
"rollup-plugin-terser": "^7.0.2"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user