-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "stringwiz",
"version": "0.0.0-development",
"description": "StringWiz: A Simple and Efficient JavaScript String Manipulation Library. Provides a range of easy-to-use functions for common string operations.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"commit": "git-cz",
"test": "jest",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"acp": "git add . && npm run commit && git push",
"semantic-release": "semantic-release --branches main"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"semantic-release": "^23.0.0",
"semver": "^7.5.4",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.x"
},
"engines": {
"node": ">=16.0.0"
},
"author": "Kelvin Anigboro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rukywe/stringWiz"
},
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}