-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "@arkecosystem/core-forger",
"version": "3.9.1",
"description": "Forger for ARK Core",
"license": "MIT",
"contributors": [
"François-Xavier Thoorens <fx@ark.io>",
"Kristjan Košič <kristjan@ark.io>",
"Brian Faust <brian@ark.io>"
],
"files": [
"dist"
],
"main": "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-kernel": "3.9.1",
"@arkecosystem/core-p2p": "3.9.1",
"@arkecosystem/core-transactions": "3.9.1",
"@arkecosystem/crypto": "3.9.1",
"joi": "17.12.1",
"node-forge": "1.3.2",
"wif": "2.0.6"
},
"devDependencies": {
"@types/node-forge": "1.3.11",
"@types/wif": "2.0.2"
},
"engines": {
"node": ">=10.x"
},
"publishConfig": {
"access": "public"
},
"arkecosystem": {
"core": {
"alias": "forger"
}
}
}