forked from decentraland/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) 路 2.8 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) 路 2.8 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
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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "decentraland",
"version": "3.8.2",
"description": "Decentraland CLI developer tool.",
"bin": {
"dcl": "dist/index.js"
},
"files": [
"bin",
"dist",
"samples",
"abi"
],
"scripts": {
"start": "npm run watch",
"watch": "tsc -p tsconfig.json -w",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"test": "FORCE_COLOR=1 ava",
"test:dry": "FORCE_COLOR=1 ava --update-snapshots",
"test:ci": "FORCE_COLOR=1 ava -v --fail-fast --match='!*E2E*' --match='!*Decentraland.deploy()*'",
"test:win": "set FORCE_COLOR=1 ava -v --fail-fast --match=\"!*E2E*\" --match=\"!*Decentraland.deploy()*\""
},
"repository": "decentraland/cli",
"keywords": [
"decentraland",
"cli",
"dcl",
"mana",
"land"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"license": "Apache-2.0",
"homepage": "https://github.com/decentraland/cli",
"devDependencies": {
"@dcl/eslint-config": "^1.0.1-20211125144552.commit-722b3e8",
"@types/analytics-node": "0.0.32",
"@types/archiver": "^3.0.0",
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.12",
"@types/cross-spawn": "^6.0.2",
"@types/express": "^4.11.1",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^7.1.1",
"@types/inquirer": "0.0.36",
"@types/isomorphic-fetch": "0.0.34",
"@types/node": "^12.12.55",
"@types/puppeteer": "^1.11.2",
"@types/request": "^2.48.1",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.9",
"@types/sinon": "^5.0.5",
"@types/uuid": "^8.3.3",
"@types/ws": "^6.0.1",
"husky": "^7.0.4",
"rimraf": "^2.6.2",
"ts-node": "^4.1.0"
},
"dependencies": {
"@dcl/linker-dapp": "^0.1.3",
"@dcl/schemas": "^2.2.3-20211130152647.commit-cbda2b3",
"analytics-node": "^3.2.0",
"archiver": "^3.1.1",
"arg": "^4.1.0",
"ava": "^1.2.1",
"chalk": "^2.3.1",
"chokidar": "^2.0.3",
"cors": "^2.8.4",
"cross-spawn": "^6.0.5",
"dcl-catalyst-client": "^5.0.3",
"dcl-catalyst-commons": "^3.0.0",
"dcl-node-runtime": "^1.0.0",
"docker-names": "^1.0.3",
"eth-connect": "^0.3.0",
"ethers": "^4.0.38",
"express": "^4.16.2",
"fs-extra": "^7.0.1",
"git-rev-sync": "^1.11.1",
"glob": "^7.1.3",
"global": "^4.4.0",
"google-protobuf": "^3.8.0",
"ignore": "^4.0.6",
"inquirer": "^6.2.0",
"isomorphic-fetch": "^2.2.1",
"opn": "^5.2.0",
"ora": "^3.0.0",
"package-json": "^7.0.0",
"portfinder": "^1.0.13",
"puppeteer": "^1.17.0",
"request": "^2.88.0",
"semver": "^5.5.0",
"sinon": "^7.1.1",
"typescript": "^4.4.3",
"uuid": "^3.4.0",
"wildcards": "^1.0.2",
"ws": "^6.0.0"
}
}