-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.41 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
81
82
{
"name": "bap-planaria",
"version": "1.0.12",
"description": "BAP indexer to MongoDB",
"author": "icellan (https://github.com/icellan)",
"license": "Open BSV License",
"homepage": "https://github.com/icellan/bap-planaria",
"repository": {
"type": "git",
"url": "https://github.com/icellan/bap-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 --detectOpenHandles --forceExit --silent",
"testonly": "./node_modules/.bin/jest --collectCoverage --detectOpenHandles --forceExit",
"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/bap.js",
"keywords": [
"bap",
"bitcoin",
"bsv",
"bitbus"
],
"dependencies": {
"bsv": "^1.5.3",
"event-stream": "^4.0.1",
"eventsource": "^1.0.7",
"mongodb": "^3.6.2",
"node-fetch": "^2.6.1",
"reconnecting-eventsource": "^1.1.0",
"simpl-schema": "^1.10.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@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.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"np": "2.20.1",
"npm-check": "^5.9.2",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.12.1",
"rimraf": "2.6.2",
"run-sequence": "2.2.1"
},
"bin": {
"bap-planaria": "./dist/index.js"
},
"jest": {
"transform": {
"^.+\\.(mjs|jsx|js)$": "babel-jest"
},
"preset": "@shelf/jest-mongodb"
},
"engines": {
"node": "13.x",
"npm": "6.x"
}
}