forked from martinandert/inflected
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "superflected",
"version": "0.1.0",
"description": "A port of ActiveSupport's inflector to Node.js",
"main": "dist/src/index.js",
"repository": "gadget-inc/superflected",
"author": "Martin Andert",
"license": "MIT",
"keywords": [
"inflector",
"inflection",
"pluralize",
"singularize",
"camelize",
"titleize",
"tableize",
"humanize",
"capitalize",
"constantify",
"dasherize",
"ordinalize",
"parameterize",
"transliterate",
"activesupport"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:prettier": "prettier --check \"{spec,src}/**/*.{js,ts}\"",
"lint:eslint": "eslint --quiet --ext ts,tsx spec src",
"lint:fix": "prettier --write --check \"{spec,src}/**/*.{js,ts}\"; eslint --ext ts --fix spec src",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm run build",
"prerelease": "gitpkg publish",
"clean": "rm -rf *.0x *-v8.log",
"x": "tsx"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "^0.4.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.3",
"@types/yargs": "^17.0.33",
"eslint": "^8.52.0",
"execa": "^5.1.1",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"prettier": "^2.8.1",
"tinybench": "^2.6.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.5",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}