forked from Laboratoria/BOG003-card-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.52 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
{
"name": "card-validation",
"version": "1.0.0",
"main": "src/index.html",
"license": "MIT",
"scripts": {
"htmlhint": "htmlhint src/*.html test/*.html",
"eslint": "eslint --ext .js src/ test/",
"pretest": "npm run eslint && npm run htmlhint",
"test": "jest --verbose --coverage",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"start": "serve ./src",
"deploy": "gh-pages -d src"
},
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^27.0.1",
"eslint": "^7.12.1",
"gh-pages": "^3.1.0",
"htmlhint": "^0.14.1",
"opener": "^1.5.1",
"serve": "^12.0.0"
},
"devDependencies": {
"jest": "^27.0.6"
},
"description": "* [1. Preámbulo](#1-preámbulo)\r * [2. Resumen del proyecto](#2-resumen-del-proyecto)\r * [3. Objetivos de aprendizaje](#3-objetivos-de-aprendizaje)\r * [4. Consideraciones generales](#4-consideraciones-generales)\r * [5. Criterios de aceptación mínimos del proyecto](#5-criterios-de-aceptación-mínimos-del-proyecto)\r * [6. Pistas, tips y lecturas complementarias](#6-pistas-tips-y-lecturas-complementarias)",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tolozayurany/BOG003-card-validation.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/tolozayurany/BOG003-card-validation/issues"
},
"homepage": "https://github.com/tolozayurany/BOG003-card-validation#readme"
}