forked from emgee3/namecase
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 796 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 796 Bytes
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
{
"name": "@compwright/namecase",
"version": "3.0.0",
"description": "Module for fixing capitalization of people's names",
"keywords": [
"namecase",
"names",
"case",
"capitalization"
],
"repository": {
"type": "git",
"url": "https://github.com/compwright/namecase.git"
},
"bugs": "https://github.com/compwright/namecase/issues",
"author": "Mason Gravitt <emgee@gravitronic.com>",
"contributors": [
"Jonathon Hill <jhill9693@gmail.com>"
],
"type": "module",
"engines": {
"node": ">=20"
},
"devDependencies": {
"mocha": "^11.7.5",
"semistandard": "^17.0.0"
},
"bin": "./bin/namecase",
"source": "src/index.js",
"scripts": {
"lint": "semistandard --fix",
"pretest": "npm run lint",
"test": "mocha test"
}
}