-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.49 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.49 KB
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
{
"name": "banano-timestamp-checker",
"version": "1.0.35",
"description": "banano timestamp checker",
"author": "Coranos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/coranos/banano-timestamp-checker.git"
},
"scripts": {
"coverage": "nyc -x 'test/util/**' -x 'test/unit/**' ./node_modules/mocha/bin/mocha.js --recursive -t 100000 test/unit",
"docs": "jsdoc2md documentation.js index.js > docs/documentation.md",
"eslint": "eslint --fix '**/*.js'",
"merge": "node -max-old-space-size=5700 merge.js",
"npm-check-updates": "npm-check-updates --target minor -u",
"preflight": "npm update && npm run npm-check-updates && npm i && npm audit fix && npm run eslint && npm run prettier && npm run coverage && npm run docs && npm outdated && echo 'preflight passed'",
"prettier": "prettier \"**/**.{ts,json,css,scss,html}\" --write",
"touch": "find . -exec touch {} \\;",
"test": "./node_modules/mocha/bin/mocha.js --recursive -t 100000 test/unit",
"start": "node main.js"
},
"dependencies": {
"@bananocoin/bananojs": "^2.7.14",
"https-rate-limit": "^1.0.10",
"levelup": "^5.1.1",
"rocksdb": "^5.2.1"
},
"preferGlobal": true,
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-google": "^0.14.0",
"jsdoc-to-markdown": "^8.0.0",
"memdown": "^6.1.1",
"mocha": "^10.2.0",
"npm-check-updates": "^16.6.5",
"nyc": "^15.1.0",
"prettier": "^2.8.3"
}
}