This repository has been archived by the owner on Sep 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.05 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
{
"name": "s-trimmer",
"version": "1.1.1",
"description": "Format spaces from the left and right end of a string and between strings",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/s-trimmer.cjs.js",
"module": "lib/s-trimmer.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "yarn prettier && yarn lint && yarn build",
"clean": "rimraf lib/*",
"build": "rollup -c",
"prebuild": "yarn clean",
"test": "jest --coverage",
"watch": "yarn build -- --watch",
"watch:test": "yarn test -- --watch",
"lint": "eslint 'src/**/*.ts' --fix",
"prettier": "prettier --write 'src/**/*.ts'",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/JB1905/s-trimmer.git"
},
"keywords": [
"string",
"text",
"format",
"trim",
"start",
"spaces",
"center",
"end",
"right",
"between",
"left"
],
"bugs": {
"url": "https://github.com/JB1905/s-trimmer/issues"
},
"homepage": "https://github.com/JB1905/s-trimmer#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.28.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn prettier",
"yarn lint"
]
},
"dependencies": {
"@types/jest": "^28.1.2"
}
}