-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "dcl-escape-room-tutorial",
"version": "1.0.0",
"description": "Learn how to make a game for Decentraland.",
"keywords": [
"Decentraland",
"DCL",
"MANA"
],
"homepage": "https://github.com/HardlyDifficult/dcl-escape-room-tutorial#readme",
"bugs": {
"url": "https://github.com/HardlyDifficult/dcl-escape-room-tutorial/issues"
},
"license": "MIT",
"author": "HardlyDifficult",
"repository": {
"type": "git",
"url": "git+https://github.com/HardlyDifficult/dcl-escape-room-tutorial.git"
},
"scripts": {
"lint": "eslint . --ext .js,.ts --fix && npmPkgJsonLint . --fix",
"lintNoFix": "eslint . --ext .js,.ts",
"deploy": "scripts/deploy.sh",
"deploy:all": "scripts/deploy_all.sh",
"postinstall": "scripts/install_all.sh"
},
"dependencies": {
"decentraland-ecs-utils": "1.1.3",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"npm-package-json-lint": "3.7.0",
"npm-package-json-lint-config-default": "2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.2.0",
"@typescript-eslint/parser": "2.2.0",
"eslint": "6.3.0",
"prettier-eslint": "9.0.0"
}
}