-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@arkecosystem/core-webhooks",
"version": "3.8.2-rc.0",
"description": "Webhooks for ARK Core",
"license": "MIT",
"contributors": [
"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.8.2-rc.0",
"@arkecosystem/crypto": "3.8.2-rc.0",
"@hapi/boom": "9.0.0",
"@hapi/hapi": "20.1.5",
"fs-extra": "8.1.0",
"joi": "17.12.1",
"lowdb": "1.0.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/fs-extra": "8.1.2",
"@types/hapi__boom": "7.4.1",
"@types/uuid": "8.3.1"
},
"engines": {
"node": ">=10.x"
},
"publishConfig": {
"access": "public"
}
}