-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
46
47
{
"name": "sd-0x-project-shopping-cart",
"version": "1.0.0",
"description": "Um ecommerce bolado do zero, integrando a API do Mercado Livre, em Vanilla Javascript",
"homepage": "https://rafaelpermec.github.io/trybestore-shopping-cart",
"main": "script.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"cypress": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js",
"lint:styles": "stylelint **/*.css --config .stylelintrc.json --ignore-disables --allow-empty-input",
"serialize": "node -e 'require(\"./cypress/utils/testCoverage.js\").testCoverage()'"
},
"jest": {
"coverageReporters": [
"text",
"html"
],
"collectCoverageFrom": [
"**/helpers/**"
],
"testMatch": [
"**/tests/**/*.test.js?(x)"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"cypress": "4.3.0",
"cypress-multi-reporters": "1.2.4",
"eslint-config-trybe-fundamentals": "1.1.0",
"jest": "24.9.0",
"mocha": "7.1.1",
"mochawesome": "5.0.0",
"mochawesome-merge": "4.0.3",
"mochawesome-report-generator": "4.1.0",
"node-fetch": "^2.6.6",
"stylelint": "13.8.0",
"stylelint-config-standard": "20.0.0"
},
"directories": {
"test": "tests"
},
"keywords": []
}