This repository was archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.25 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "menv-js",
"version": "0.0.0",
"description": "🚚 Melhor Envio Javascript API",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && npm run docs",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "npm run test:unit",
"test:ci": "npm run test:unit && npm run test:integration && codecov",
"test:unit": "jest --collectCoverage ./src",
"test:integration": "jest ./tests",
"docs": "typedoc --out docs src",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jonyw4/melhor-envio-js.git"
},
"keywords": [
"melhorEnvio",
"melhor envio",
"menv",
"me",
"api"
],
"author": "Jonathan Célio",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jonyw4/melhor-envio-js/issues"
},
"homepage": "https://github.com/jonyw4/melhor-envio-js#readme",
"dependencies": {
"axios": "^0.19.2",
"universal-base64": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@types/jest": "26.0.7",
"@typescript-eslint/eslint-plugin": "4.5.0",
"@typescript-eslint/parser": "4.5.0",
"codecov": "3.7.1",
"eslint": "7.3.1",
"eslint-config-prettier": "6.14.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.6.0",
"prettier": "2.0.5",
"semantic-release": "17.1.1",
"ts-jest": "26.4.1",
"typedoc": "0.17.8",
"typescript": "3.9.7"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
{
"name": "beta",
"prerelease": true
}
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"jest": {
"collectCoverageFrom": [
"**/src/**",
"!**/node_modules/**"
]
}
}