forked from plurals/pluralize
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.34 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": "@capaj/pluralize",
"version": "1.0.3",
"description": "Pluralize and singularize any word",
"source": "src/pluralize.ts",
"types": "dist/pluralize.d.ts",
"type": "module",
"main": "./dist/pluralize.cjs",
"module": "./dist/pluralize.module.js",
"unpkg": "./dist/pluralize.umd.js",
"files": [
"dist",
"src",
"readme.md"
],
"scripts": {
"test-spec": "mocha -R spec --bail",
"test-cov": "istanbul cover node_modules/ts-mocha/bin/ts-mocha -- src/test.cjs -R spec --bail",
"test": "npm run test-cov",
"build": "microbundle",
"prepare": "npm run build"
},
"repository": "https://github.com/capaj/pluralize.git",
"keywords": [
"plural",
"plurals",
"pluralize",
"singular",
"singularize",
"inflection"
],
"authors": [
{
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
}
],
"license": "MIT",
"readmeFilename": "readme.md",
"engines": {
"node": ">=10"
},
"devDependencies": {
"chai": "^4.3.4",
"husky": "^6.0.0",
"istanbul": "^0.4.5",
"microbundle": "^0.13.2",
"mocha": "^5.0.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}