-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
43
44
45
{
"name": "spacex-platzi",
"version": "1.0.0",
"description": "A web application that shows info of SpaceX, using spaceX rest API",
"main": "index.html",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"eslint": "eslint --ext .js src/ test/",
"htmlhint": "htmlhint src/*.html test/*.html",
"pretest": "npm run eslint && npm run htmlhint",
"test": "jest --verbose --coverage",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"start": "serve src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santiaguf/spacex-platzi.git"
},
"keywords": [
"platzi",
"spacex",
"API"
],
"author": "Santiago Bernal @santiaguf",
"license": "ISC",
"bugs": {
"url": "https://github.com/santiaguf/spacex-platzi/issues"
},
"homepage": "https://github.com/santiaguf/spacex-platzi#readme",
"devDependencies": {
"eslint": "^8.27.0",
"htmlhint": "^1.1.4",
"localtunnel": "^2.0.2",
"serve": "^14.1.1"
},
"dependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"opener": "^1.5.2"
}
}