-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
{
"name": "unrepeat",
"version": "2.1.1",
"description": "🔄 The missing inverse of the javascript's \"repeat\" method",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"build": "tsc",
"test": "jest --coverage --bail",
"lint": "eslint --ext .js,.ts src/ --ext .js,.ts test/",
"lint:fix": "yarn lint --fix",
"version:recommend": "conventional-recommended-bump -p angular",
"version:bump": "npm version -m \"chore(release): publish %s\"",
"preversion": "yarn test && yarn lint && yarn build",
"version": "yarn changelog && git add .",
"postversion": "git push && git push --tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umutcanbolat/unrepeat.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"repeat",
"repetition",
"reverse",
"unrepeat",
"no-repeat",
"string-repetition",
"inverse",
"string",
"utility"
],
"author": "Umut Canbolat",
"license": "MIT",
"bugs": {
"url": "https://github.com/umutcanbolat/unrepeat/issues"
},
"homepage": "https://github.com/umutcanbolat/unrepeat#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.21",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.23",
"conventional-recommended-bump": "^6.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^10.0.0-1",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"jest --coverage --bail --findRelatedTests",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}