-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "create-hq20-dapp",
"version": "0.0.1-beta.1",
"description": "HQ20 dapp boilerplate.",
"license": "Apache-2.0",
"author": {
"name": "TechHQ",
"github": "hq20",
"email": "[email protected]",
"url": "https://techhq.io"
},
"engines": {
"node": ">= 10.20.1",
"npm": ">= 6.14.0",
"yarn": ">= 1.22.0"
},
"main": "dist/index.js",
"bin": {
"create-hq20-dapp": "dist/index.js"
},
"files": [
"/dist/*.js"
],
"scripts": {
"build": "tsc -p .",
"postbuild": "chmod u+x dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"name": "HQ20/create-hq20-dapp",
"type": "git",
"url": "git+https://github.com/HQ20/create-hq20-dapp.git"
},
"bugs": {
"url": "https://github.com/HQ20/create-hq20-dapp/issues"
},
"homepage": "https://github.com/HQ20/create-hq20-dapp#readme",
"keywords": [],
"dependencies": {
"execa": "4.0.2",
"got": "11.3.0",
"listr": "0.14.3",
"meow": "7.0.1",
"mkdirp": "1.0.4",
"tar": "6.0.2"
},
"devDependencies": {
"@types/listr": "0.14.2",
"@types/mkdirp": "1.0.1",
"@types/node": "14.0.13",
"@types/tar": "4.0.3",
"ts-node": "8.10.2",
"typescript": "3.9.5"
}
}