-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 955 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 955 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
31
32
{
"name": "stringy-core",
"version": "1.0.0",
"description": "Stringy: A nimble and intuitive JavaScript library for efficient string manipulation.",
"main": "index.js",
"repository": "https://github.com/swanandapps/stringy-core",
"type": "module",
"author": "",
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-table": "^7.32.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "3.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --rule '{\"no-console\":[\"error\",{\"allow\":[\"info\",\"warn\",\"error\",\"group\",\"groupCollapsed\",\"groupEnd\"]}]}' -f table",
"prettier --write"
]
}
}