-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.79 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
{
"name": "@bananocoin/banano-ts-cli",
"version": "1.0.17",
"description": "banano cli that uses typescript bindings",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/BananoCoin/banano-ts-cli.git"
},
"scripts": {
"coverage": "nyc ts-mocha --recursive -t 100000 test/unit/**/*.ts",
"docs": "jsdoc2md documentation.js dist/index.js > docs/documentation.md",
"npm-check-updates": "npm-check-updates --target minor -u",
"clear": "rm -r dist",
"preflight": "npm run clear && npm run touch && npm update && npm run npm-check-updates && npm i && npm audit fix && npm run prettier && npm run build && npm run coverage && npm run docs && npm outdated && echo 'preflight passed'",
"prettier": "prettier \"**/**.{js,ts,json,css,scss,html}\" --write",
"touch": "#find . -exec touch {} \\;",
"build": "npx tsc",
"test": "ts-mocha --recursive -t 100000 test/unit/**/*.ts",
"start": "node dist/main.js"
},
"keywords": [],
"author": "coranos",
"license": "MIT",
"devDependencies": {
"@brightlayer-ui/eslint-config": "^3.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/blake2b": "^2.1.3",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"chai": "^4.4.1",
"eslint-config-prettier": "^9.1.0",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@bananocoin/bananojs": "^2.10.8",
"@types/chai": "^4.3.15",
"blake2b": "^2.1.4",
"https-rate-limit": "^1.0.13",
"npm-check-updates": "^16.14.20"
}
}