forked from Laboratoria/DEV005-card-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 923 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
34
{
"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"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^27.0.1",
"eslint": "^8.34.0",
"gh-pages": "^3.2.3",
"htmlhint": "^1.0.0",
"jest": "^27.0.1",
"opener": "^1.5.1",
"serve": "^14.2.0"
},
"engines": {
"node": ">=16.x"
},
"bootcamp": {
"createdAt": "2023-02-01T14:33:46.927Z",
"version": "5.5.0",
"commit": "36bf90dc273bab8ffe9546b09eece6a132f8a669"
}
}