-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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": "case-to-case",
"version": "1.2.0",
"description": "Edit and define case strings.",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"lint": "npx eslint --color ./src",
"test": "jest --verbose --colors --watchAll ./src",
"pre-test": "jest --verbose --colors ./src",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zharinov-nikita/case-to-case.git"
},
"homepage": "https://github.com/zharinov-nikita/case-to-case#readme",
"keywords": [
"change-case",
"define-case",
"camelCase",
"snakeCase",
"kebabCase",
"pascalCase",
"lowerCase",
"upperCase"
],
"author": "zharinov-nikita",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.4.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"babel-jest": "^29.4.2",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"files": [
"dist"
]
}