-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "@arkecosystem/musig-server",
"version": "3.0.0",
"description": "A RESTful API to interact with Multi-Signatures on the ARK Blockchain.",
"license": "MIT",
"contributors": [],
"main": "distribution/index",
"types": "distribution/index",
"bin": {
"musig": "bin/run"
},
"files": [
"bin",
"distribution"
],
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "npm run build -- -w",
"clean": "rimraf .coverage distribution tmp",
"test": "jest --forceExit --passWithNoTests",
"test:watch": "jest --forceExit --passWithNoTests --watchAll",
"prepublishOnly": "npm run build",
"format": "npm run lint && npm run prettier",
"lint": "eslint source/**/*.ts --fix",
"lint:tests": "eslint source/**/*.test.ts --fix",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./**/*.{ts,js,json,md}\""
},
"dependencies": {
"@arkecosystem/crypto": "^3.1.0",
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^20.1.2",
"@konceiver/foreman": "^2.0.2",
"cross-fetch": "^3.1.4",
"env-paths": "^2.2.1",
"fs-extra": "^9.1.0",
"get-value": "^3.0.1",
"joi": "^17.6.0",
"media-type": "^0.3.1",
"meow": "^9.0.0",
"micromatch": "^4.0.4",
"rate-limiter-flexible": "^2.3.6",
"set-value": "^4.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^1.0.2",
"@types/eslint": "^7.2.10",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/fs-extra": "^9.0.12",
"@types/hapi__hapi": "^20.0.9",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.43",
"@types/prettier": "^2.2.3",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "~0.2.14",
"eslint-plugin-unused-imports": "^1.1.2",
"got": "^11.8.2",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"nock": "^13.0.11",
"npm-check-updates": "^11.5.6",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"typescript": "^4.3.0"
},
"engines": {
"node": ">=14.x"
}
}