-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.5 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
61
62
63
64
65
66
67
68
69
{
"name": "pluraljs",
"version": "1.1.1",
"description": "A micro library to produce any singular noun into plural\n\n",
"main": "dist/main.cjs.js",
"module": "dist/pluraljs.esm.js",
"browser": "dist/pluraljs.umd.min.js",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"format": "prettier --write \"*.{js,json,css,md}\"",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"prettier": {
"singleQuote": true,
"useTabs": true,
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalpeshsingh/PluralJS.git"
},
"keywords": [
"plural",
"singular",
"words",
"pluralization",
"inflection",
"nouns"
],
"readmeFilename": "README.md",
"author": {
"name": "Kalpesh Singh",
"email": "[email protected]",
"url": "https://knowkalpesh.in"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kalpeshsingh/PluralJS/issues"
},
"homepage": "https://github.com/kalpeshsingh/PluralJS#readme",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-json": "^4.0.3",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rollup": "^2.8.2",
"rollup-plugin-filesize": "^8.0.2",
"rollup-plugin-terser": "^5.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}