generated from eclass/ts-template-npm-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.21 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@eclass/use-side-effect",
"version": "1.1.0",
"description": "Hook para react que compara un objecto antes de ejecutar el efecto colateral",
"main": "dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier-standard 'lib/**/*.ts'",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "cd test && npm run test",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/eclass/useSideEffect"
},
"keywords": [
"eclass"
],
"engines": {
"node": ">=10.16.3"
},
"author": "Ender Bonnet <[email protected]> (https://enbonnet.me/)",
"contributors": [
"Leonardo Gatica <[email protected]> (https://about.me/lgatica)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/eclass/useSideEffect/issues"
},
"homepage": "https://github.com/eclass/useSideEffect#readme",
"peerDependencies": {
"react": "16.12.0",
"react-dom": "16.12.0"
},
"devDependencies": {
"react": "16.12.0",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@eclass/eslint-config": "1.3.0",
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"@types/node": "12.12.22",
"@typescript-eslint/eslint-plugin": "2.13.0",
"@typescript-eslint/parser": "2.13.0",
"eslint": "6.8.0",
"eslint-plugin-array-func": "3.1.3",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsdoc": "18.4.4",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.5.0",
"eslint-plugin-standard": "4.0.1",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"prettier-standard": "16.1.0",
"semantic-release": "15.14.0",
"ts-node": "8.5.4",
"typescript": "3.7.4"
},
"eslintConfig": {
"plugins": [
"react-hooks",
"react"
],
"extends": [
"@eclass",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
],
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"parser": "@typescript-eslint/parser"
},
"eslintIgnore": [
"coverage",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"lib/**/*.ts": [
"eslint --fix",
"prettier-standard",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"jsxBracketSameLine": true,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false
},
"renovate": {
"extends": [
"@eclass:js-lib"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}