forked from andrepolischuk/numd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "numd",
"version": "3.1.0",
"description": "Pluralize a word",
"main": "index.es5.js",
"jsnext:main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.es5.js",
"index.d.ts"
],
"scripts": {
"test": "eslint . && ava --require babel-register",
"prepublish": "babel index.js --out-file index.es5.js",
"postpublish": "rimraf index.es5.js && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrepolischuk/numd.git"
},
"keywords": [
"number",
"numeral",
"word",
"singular",
"plural",
"pluralize"
],
"author": "Andrey Polischuk <[email protected]> (https://andrepolischuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrepolischuk/numd/issues"
},
"homepage": "https://github.com/andrepolischuk/numd",
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"rimraf": "^2.5.0"
}
}