forked from bernardoroll/9.3-content-async-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 844 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": "aula-9.3",
"version": "1.0.0",
"main": "request.js",
"scripts": {
"test": "jest",
"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"
},
"jest": {
"coverageReporters": [
"text",
"html"
],
"collectCoverageFrom": [
"**/helpers/**"
],
"testMatch": [
"**/tests/**/*.test.js?(x)"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"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",
"stylelint": "13.8.0",
"stylelint-config-standard": "20.0.0"
}
}