-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 928 Bytes
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
{
"name": "@herb-ert/stringkitjs",
"version": "1.0.0",
"description": "A focused, zero-dependency utility library for common string manipulations in JavaScript. Clean API, no global prototype pollution, and built for real-world use.",
"main": "Stringkit.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/herb-ert/stringkitjs.git"
},
"keywords": [
"string",
"strings",
"string methods",
"string utility",
"utility",
"javascript"
],
"scripts": {
"publish:npm": "npm publish --access public --userconfig .npmrc.npmjs",
"publish:github": "npm publish --userconfig .npmrc.github",
"publish:all": "npm run publish:npm && npm run publish:github"
},
"author": "herb-ert",
"license": "MIT",
"bugs": {
"url": "https://github.com/herb-ert/stringkitjs/issues"
},
"homepage": "https://github.com/herb-ert/stringkitjs#readme"
}