cic-stack/apps/cic-meta/package.json

79 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2021-02-08 18:31:29 +01:00
{
2021-05-21 11:42:08 +02:00
"name": "@cicnet/cic-client-meta",
"version": "0.0.11",
2021-02-08 18:31:29 +01:00
"description": "Signed CRDT metadata graphs for the CIC network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
2021-05-21 11:42:08 +02:00
"bin": {
"meta-set": "bin/set.js",
"meta-get": "bin/get.js"
},
"preferGlobal": true,
2021-02-08 18:31:29 +01:00
"scripts": {
"test": "mocha -r node_modules/node-localstorage/register -r ts-node/register tests/*.ts",
2021-06-07 18:11:03 +02:00
"test:coverage": "nyc mocha tests/*.ts --timeout 3000 --check-coverage=true",
"build": "node_modules/typescript/bin/tsc -d --outDir dist src/index.ts",
2021-02-08 18:31:29 +01:00
"build-server": "tsc -d --outDir dist-server scripts/server/*.ts",
"pack": "node_modules/typescript/bin/tsc -d --outDir dist && webpack",
2021-02-21 16:41:37 +01:00
"clean": "rm -rf dist",
"prepare": "npm run build && npm run build-server",
2021-05-21 11:42:08 +02:00
"start": "./node_modules/ts-node/dist/bin.js ./scripts/server/server.ts",
"publish": "npm publish --access public"
2021-02-08 18:31:29 +01:00
},
"dependencies": {
2021-05-21 11:42:08 +02:00
"@cicnet/crdt-meta": "^0.0.10",
2021-02-08 18:31:29 +01:00
"@ethereumjs/tx": "^3.0.0-beta.1",
"automerge": "^0.14.1",
2021-05-21 11:42:08 +02:00
"colors": "^1.4.0",
2021-02-08 18:31:29 +01:00
"ethereumjs-wallet": "^1.0.1",
2021-04-28 11:11:39 +02:00
"ini": "^1.3.8",
2021-02-08 18:31:29 +01:00
"openpgp": "^4.10.8",
"pg": "^8.4.2",
"sqlite3": "^5.0.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"mocha": "^8.2.0",
2021-06-07 18:11:03 +02:00
"nock": "^13.1.0",
2021-02-08 18:31:29 +01:00
"node-localstorage": "^2.1.6",
2021-06-07 18:11:03 +02:00
"nyc": "^15.1.0",
2021-02-08 18:31:29 +01:00
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"author": "Louis Holbrook <dev@holbrook.no>",
2021-02-25 10:58:43 +01:00
"contributors": [
{
"name": "Spencer Ofwiti",
"email": "maxspencer56@gmail.com"
}
],
2021-02-08 18:31:29 +01:00
"license": "GPL-3.0-or-later",
"engines": {
2021-04-28 11:11:39 +02:00
"node": ">=14.16.1"
2021-06-07 18:11:03 +02:00
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true,
"branches": "&gt;80",
"lines": "&gt;80",
"functions": "&gt;80",
"statements": "&gt;80"
2021-02-08 18:31:29 +01:00
}
}