-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 KB
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
48
49
50
51
52
53
54
55
{
"name": "@frete.com/architecture-test-api",
"version": "2.1.6",
"description": "CLI para construção de projetos de testes automatizados de API baseados em uma arquitetura de referência definida pelo de time de Qualidade da Frete.com",
"repository": "https://github.com/frete-com/architecture-test-api",
"keywords": [
"architecture",
"arquitetura",
"testes",
"tests",
"teste",
"test",
"api"
],
"type": "commonjs",
"bin": {
"architecture-test-api": "bin/architecture-test-api"
},
"scripts": {
"format": "eslint \"**/*.{js,jsx}\" --fix && prettier \"**/*.{js,jsx,json}\" --write"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"gluegun": "latest",
"lodash": "^4.17.21",
"supertest": "^6.3.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}