forked from BananoCoin/bananojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.59 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
{
"name": "@bananocoin/bananojs",
"version": "2.7.4",
"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'",
"prepublish": "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": {
"chai": "^4.3.6",
"elliptic": "^6.5.4",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^3.6.11",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^10.0.0",
"npm-check-updates": "^16.3.8",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"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"
}
}