-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 943 Bytes
/
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
{
"name": "asynchronism-js-platzi",
"version": "1.0.0",
"description": "dizzy Curso de Asincronismo con JavaScript",
"main": "src/index.js",
"type": "module",
"scripts": {
"callbacksCalc": "node others/callbacks/calc.js",
"callbacksDate": "node others/callbacks/dates.js",
"format": "prettier --write .",
"lint": "eslint . && prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/UltiRequiem/Asynchronism-JS-Platzi.git"
},
"keywords": [
"platzi"
],
"author": "UltiRequiem",
"license": "MIT",
"bugs": {
"url": "https://github.com/UltiRequiem/Asynchronism-JS-Platzi/issues"
},
"homepage": "https://github.com/UltiRequiem/Asynchronism-JS-Platzi#readme",
"dependencies": {
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"prettier-eslint": "^12.0.0",
"xmlhttprequest": "^1.8.0"
}
}