-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 1021 Bytes
/
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
{
"name": "mypluralize",
"version": "1.0.3",
"description": "A Node.js module that returns the plural form of any noun",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/*.js -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philipszdavido/mypluralize.git"
},
"keywords": [],
"author": "Chidume Nnamdi <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/philipszdavido/mypluralize/issues"
},
"homepage": "https://github.com/philipszdavido/mypluralize#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"dependencies": {
"@types/pluralize": "0.0.27",
"pluralize": "^7.0.0"
}
}