-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 907 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
{
"name": "sane-plural",
"version": "0.0.2",
"description": "The sane way to get the plural form of nouns",
"main": "./lib/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && babel ./src -d ./lib",
"test": "npm run build && jest --watch /__test__",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyan33/sane-plural.git"
},
"keywords": [
"plural"
],
"author": "Chang Yan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyan33/sane-plural/issues"
},
"homepage": "https://github.com/cyan33/sane-plural#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.0.6",
"jest-cli": "^22.0.6"
},
"dependencies": {
"irregular-plurals": "^1.4.0"
}
}