This repository has been 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
/
package.json
85 lines (85 loc) · 1.97 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
{
"name": "webmaniabr-js",
"version": "0.0.0",
"description": "📄 Webmania BR 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:integration && npm run test:unit && 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/webmaniabr-js.git"
},
"author": "Jonathan Célio",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jonyw4/webmaniabr-js/issues"
},
"homepage": "https://github.com/jonyw4/webmaniabr-js#readme",
"dependencies": {
"axios": "0.19.2"
},
"devDependencies": {
"@commitlint/cli": "9.0.1",
"@commitlint/config-conventional": "9.0.1",
"@types/jest": "26.0.4",
"@typescript-eslint/eslint-plugin": "3.6.0",
"@typescript-eslint/parser": "3.6.0",
"codecov": "3.7.1",
"eslint": "7.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.1.0",
"prettier": "2.0.5",
"semantic-release": "17.1.1",
"ts-jest": "26.1.1",
"typedoc": "0.17.8",
"typescript": "3.9.6"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"jest": {
"collectCoverageFrom": [
"**/src/**",
"!**/node_modules/**"
]
}
}