-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.09 KB
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
{
"name": "string-utilz",
"version": "1.4.0",
"description": "String utilities for JavaScript.",
"main": "lib/string-utilz.js",
"scripts": {
"test": "jest --coverage --colors"
},
"repository": {
"type": "git",
"url": "git://github.com/MaddHacker/string-utilz.git"
},
"bugs": {
"url": "https://github.com/MaddHacker/string-utilz/issues",
"email": "hacker@maddhacker.com"
},
"keywords": [
"strings",
"string utilities",
"string utils",
"string-utils",
"string management",
"string format",
"string formatting",
"formatting"
],
"author": "MaddHacker <hacker@maddhacker.com> (https://www.maddhacker.com)",
"contributors": [
"MaddHacker <hacker@maddhacker.com> (https://www.maddhacker.com)",
"theFieryDev <thefierydev@gmail.com> (https://www.thefierydev.com)"
],
"license": "Apache-2.0",
"homepage": "https://github.com/MaddHacker/string-utilz#readme",
"engines": {
"node": ">=10.0.0",
"npm": ">=5.0.0"
},
"dependencies": {},
"devDependencies": {
"jest": ">=25.1.0"
},
"jest": {
"verbose": true
}
}