-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "vowelz",
"version": "2.1.0",
"description": "A JavaScript library for efficient manipulation of vowels within strings. Count, transform case, extract positions, and perform various operations on vowels with ease. Enhance your text processing and string transformations using Vowelz.",
"main": "index.js",
"homepage": "https://github.com/sricharankrishnan/vowelz",
"scripts": {
"build": "babel ./src -d ./dist",
"test" : "jest --verbose --coverage"
},
"author": "Sricharan Krishnan | https://github.com/sricharankrishnan",
"repository": {
"type": "git",
"url": "https://github.com/sricharankrishnan/vowelz"
},
"license": "MIT",
"keywords": [
"open source",
"javascript library",
"string manipulation",
"vowels",
"text processing",
"string utilities",
"javascript regex"
],
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^29.7.0"
}
}