-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.68 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.68 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "case-it",
"version": "1.0.1",
"description": "{camel,constant,dot,kebab,pascal,snake,space} case it.",
"repository": "https://github.com/firede/case-it.git",
"author": "Firede <firede@firede.us>",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"compile": "tsc",
"flowgen": "node scripts/gen-flowtype.js",
"build": "yarn compile && yarn flowgen",
"watch": "tsc -w",
"test": "jest",
"clean": "rimraf dist *.js *.flow *.ts *.tgz",
"prepack": "yarn clean && yarn build && cp dist/* ."
},
"files": [
"*.js",
"*.flow",
"*.ts"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"flowgen": "^1.2.2",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.0",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.12.0",
"typescript": "^4.5.5"
},
"keywords": [
"case",
"camel",
"camelcase",
"camel-case",
"constant",
"constantcase",
"constant-case",
"dot",
"dotcase",
"dot-case",
"kebab",
"kebabcase",
"kebab-case",
"pascal",
"pascalcase",
"pascal-case",
"snake",
"snakecase",
"snake-case",
"space",
"spacecase",
"space-case",
"string",
"convert"
],
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}