-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.08 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": "strops",
"version": "1.2.0",
"description": "Provides simple and the most useful methods to string operations in JavaScript / Node.js",
"author": "Max Shane <[email protected]>",
"license": "MIT",
"keywords": [
"substrings",
"strings",
"parsing",
"substring-replace",
"substring-remove",
"substring-search",
"edit-html",
"remove-tags",
"replace-words",
"edit-text"
],
"main": "strops.cjs",
"types": "strops.d.ts",
"readmeFilename": "README.md",
"files": [
"strops.d.ts"
],
"engines": {
"node": "^14.6 || 16 || 17 || 18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"types": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/wellloy1/strops-js.git"
},
"bugs": {
"url": "https://github.com/wellloy1/strops-js/issues",
"email": "[email protected]"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"type": "module"
}