-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 993 Bytes
/
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
50
{
"name": "spongebob_squarepants_case",
"version": "0.1.2",
"description": "A utility that converts strings to spongebob case",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"author": "Bill Glesias",
"license": "MIT",
"engines": {
"node": ">= 12.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AtofStryker/spongebob-case.git"
},
"keywords": [
"sponge",
"spongebob",
"squarepants",
"mock",
"mocking",
"nitpicky",
"case"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-html-reporter": "^3.1.3",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}