forked from dappnode/DAppNodeSDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.75 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@dappnode/dappnodesdk",
"version": "0.2.52",
"description": "dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dappnodesdk": "dist/dappnodesdk.js"
},
"scripts": {
"test": "mocha \"./{,!(node_modules)/**}/*.test.ts\"",
"lint": "eslint . --ext .ts --fix",
"build": "tsc",
"prepublish": "npm run build",
"tag-and-publish": "npm version patch && git push origin master && git push --tags",
"pre-commit": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodeSDK.git"
},
"keywords": [
"cli",
"dappnode",
"ethereum"
],
"author": "DAppNode Association <[email protected]> (https://github.com/dappnode)",
"contributors": [
"Eduardo Antuña <[email protected]> (https://github.com/eduadiez)",
"dappLion <[email protected]> (https://github.com/dapplion)"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dappnode/DAppNodeSDK/issues"
},
"homepage": "https://github.com/dappnode/DAppNodeSDK#readme",
"dependencies": {
"@octokit/rest": "^18.0.12",
"ajv": "^6.12.2",
"ajv-errors": "^1.0.1",
"async-retry": "^1.2.3",
"chalk": "^2.4.2",
"cli-progress": "^3.8.2",
"dotenv": "^8.2.0",
"ethers": "^5.0.3",
"figlet": "^1.2.3",
"form-data": "^3.0.0",
"got": "^10.5.5",
"image-size": "^0.8.1",
"inquirer": "^6.2.1",
"js-yaml": "^3.12.1",
"listr": "^0.14.3",
"lodash": "^4.17.20",
"mime-types": "^2.1.24",
"moment": "^2.27.0",
"prettier": "^2.1.2",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"semver": "^5.6.0",
"source-map-support": "^0.5.19",
"tar-fs": "^2.0.0",
"timestring": "^5.0.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/ajv-errors": "^1.0.2",
"@types/async-retry": "^1.4.2",
"@types/chai": "^4.2.11",
"@types/cli-progress": "^3.7.0",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/js-yaml": "^3.12.5",
"@types/listr": "^0.14.2",
"@types/lodash": "^4.14.161",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/prettier": "^2.1.5",
"@types/request": "^2.48.5",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.1",
"@types/tar-fs": "^2.0.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"chai": "^4.2.0",
"eslint": "^7.3.1",
"mocha": "^6.2.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"engines": {
"node": ">=8.0.0"
}
}