-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
63 lines (63 loc) · 2.72 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
{
"name": "@bananocoin/bananojs",
"version": "2.10.10",
"module": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bananocoin/bananojs.git"
},
"scripts": {
"build-export-ts": "node build/export-ts.js",
"build": "node build/build.js",
"camo-test": "./node_modules/mocha/bin/mocha.js -t 1000000 test/camo",
"coverage": "nyc -x 'test/util/**' -x 'test/unit/**' -x 'libraries/**' -x '**/mock-bananode-api.js' ./node_modules/mocha/bin/mocha.js -t 100000 test/unit",
"coverage-win": "nyc -x 'test\\util\\**' -x 'test\\unit\\**' -x 'libraries\\**' -x '**\\mock-bananode-api.js' -x '**\\bananode-api.js' .\\node_modules\\mocha\\bin\\mocha -t 100000 test\\unit",
"docs": "jsdoc2md documentation.js index.js app/scripts/*.js > docs/documentation.md",
"eslint": "eslint --fix '**/*.js'",
"multisig-test": "./node_modules/mocha/bin/mocha.js -t 1000000 test/multisig",
"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 run build && npm run typescript && npm run build-export-ts && npm outdated && echo 'preflight passed'",
"prenpmpublish": "npm --no-git-tag-version version patch && npm run build && npm run typescript && npm run build-export-ts;",
"prettier": "prettier \"**/**.{ts,json,css,scss,html}\" --write",
"test": "./node_modules/mocha/bin/mocha.js -t 100000 test/unit",
"test-win": ".\\node_modules\\mocha\\bin\\mocha -t 100000 test\\unit",
"typescript": "./node_modules/jsdoc/jsdoc.js -t node_modules/tsd-jsdoc/dist/ documentation.js index.js app/scripts/*.js -d console > index.d.ts",
"vanity-test": "./node_modules/mocha/bin/mocha.js -t 1000000 test/vanity",
"square-proof-test": "./node_modules/mocha/bin/mocha.js -t 1000000 test/square-proof",
"start": "node main.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"package": "^1.0.1"
},
"devDependencies": {
"bigint-crypto-utils": "^3.3.0",
"blakejs": "^1.2.1",
"chai": "^4.4.1",
"elliptic": "^6.5.5",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"npm-check-updates": "^16.14.20",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"tsd-jsdoc": "^2.5.0"
},
"description": "JavaScript utilities for the banano cryptocurrency.",
"bugs": {
"url": "https://github.com/bananocoin/bananojs/issues"
},
"homepage": "https://github.com/bananocoin/bananojs#readme",
"directories": {
"test": "test"
},
"overrides": {
"tsd-jsdoc": {
"jsdoc": "4.0.3"
}
}
}