-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "@day1co/fastcase",
"version": "3.1.1",
"description": "fast and simple snake/camel case converter",
"url": "https://github.com/day1co/fastcase",
"repository": "https://github.com/day1co/fastcase",
"author": "Dongsu Jang <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"prebuild": "npm run lint",
"lint": "eslint --ext .js --ext .ts ./src",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose ./src",
"ci:test": "npm run test",
"build": "tsc",
"start": "tsc -w"
},
"devDependencies": {
"@day1co/eslint-config": "^1.3.1",
"@day1co/prettier-config": "^1.2.2",
"@day1co/tsconfig": "^1.3.0",
"@tsconfig/node-lts": "^20.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}