-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bsocial-planaria",
"version": "1.2.3",
"description": "Bitcoin Social indexer to MongoDB",
"author": "icellan (https://github.com/icellan)",
"license": "Open BSV License",
"homepage": "https://github.com/icellan/bsocial-planaria",
"repository": {
"type": "git",
"url": "https://github.com/icellan/bsocial-planaria.git"
},
"scripts": {
"clean": "rimraf dist/",
"build": "rimraf dist/ && babel src/ --presets minify --out-dir dist/",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testquiet": "./node_modules/.bin/jest --forceExit --detectOpenHandles --silent",
"testonly": "./node_modules/.bin/jest --collectCoverage --forceExit --detectOpenHandles",
"testwatch": "./node_modules/.bin/jest --watchAll --collectCoverage --detectOpenHandles",
"test": "npm run lint && npm run testquiet",
"test-watch": "npm run testwatch",
"check": "./node_modules/.bin/npm-check -u",
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"pub": "./node_modules/.bin/np || true",
"run": "npm run build && node ./dist/index.js",
"start": "node ./dist/index.js"
},
"main": "dist/bsocial.js",
"keywords": [
"social",
"bitcoin",
"bsv",
"bitbus"
],
"dependencies": {
"bmapjs": "^0.3.5",
"bsv": "^1.5.4",
"event-stream": "^4.0.1",
"eventsource": "^1.0.7",
"mongodb": "^3.6.4",
"node-fetch": "^2.6.1",
"reconnecting-eventsource": "^1.1.0",
"simpl-schema": "^1.10.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.5",
"@babel/register": "^7.13.0",
"@shelf/jest-mongodb": "^1.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-minify": "^0.4.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"np": "2.20.1",
"npm-check": "5.7.0",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.12.1",
"rimraf": "2.6.2",
"run-sequence": "2.2.1"
},
"bin": {
"bsocial-planaria": "./dist/index.js"
},
"jest": {
"transform": {
"^.+\\.(mjs|jsx|js)$": "babel-jest"
},
"preset": "@shelf/jest-mongodb"
}
}