forked from sauloviniciusf/pagarme-js-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "pagarme-js-types",
"description": "📖 A simple typescript definition file for pagarme-js package",
"version": "0.0.0",
"files": [
"src"
],
"main": "",
"types": "dist/index.d.ts",
"repository": "[email protected]:jonyw4/pagarme-js-types.git",
"author": "Jonathan Célio <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --declaration --emitDeclarationOnly",
"lint": "eslint --ext .ts,.tsx",
"lint:fix": "eslint --ext .ts,.tsx --fix"
},
"devDependencies": {
"@commitlint/config-conventional": "9.1.2",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"commitlint": "9.1.2",
"eslint": "7.20.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"semantic-release": "17.3.9",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"release": {
"branches": [
"master",
"next"
]
}
}