generated from eclass/ts-template-npm-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.84 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
{
"name": "@eclass/scrollmove",
"version": "1.0.0",
"description": "Paquete para mover el scroll suave hasta centrar un elemento en pantalla",
"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/scrollmove"
},
"keywords": [
"eclass"
],
"engines": {
"node": ">=10.16.3"
},
"author": "Ender Bonnet <enbonnet@pm.me> (https://enbonnet.me/)",
"contributors": [
"Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/eclass/scrollmove/issues"
},
"homepage": "https://github.com/eclass/scrollmove#readme",
"dependencies": {},
"devDependencies": {
"@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-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": {
"extends": [
"@eclass",
"plugin:@typescript-eslint/recommended"
],
"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": true
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}