-
Notifications
You must be signed in to change notification settings - Fork 278
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@arkecosystem/core-api",
"version": "3.9.1",
"description": "Public API for ARK Core",
"license": "MIT",
"contributors": [
"Kristjan Košič <kristjan@ark.io>",
"Brian Faust <brian@ark.io>"
],
"files": [
"dist"
],
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile -w",
"build:docs": "../../node_modules/typedoc/bin/typedoc --out docs src",
"clean": "rimraf dist",
"compile": "node ../../node_modules/typescript/bin/tsc",
"prepublishOnly": "yarn build",
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-database": "3.9.1",
"@arkecosystem/core-kernel": "3.9.1",
"@arkecosystem/core-transactions": "3.9.1",
"@arkecosystem/crypto": "3.9.1",
"@hapi/boom": "9.1.4",
"@hapi/hapi": "20.1.5",
"@hapi/hoek": "9.2.0",
"joi": "17.12.1",
"nanomatch": "1.2.13",
"node-cache": "5.1.2",
"qs": "6.14.1",
"rate-limiter-flexible": "4.0.1",
"semaphore": "1.1.0",
"semver": "7.5.4"
},
"devDependencies": {
"@types/hapi__boom": "7.4.1",
"@types/semaphore": "1.1.4",
"@types/semver": "7.5.6"
},
"engines": {
"node": ">=10.x"
},
"publishConfig": {
"access": "public"
},
"arkecosystem": {
"core": {
"alias": "api"
}
}
}