forked from domharrington/js-number-abbreviate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 798 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
{
"name": "number-abbreviate",
"version": "1.2.1",
"description": "Abbreviate a number and add unit letters e.g. 2200000 => '2.2m'",
"author": "Dom Harrington <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/domharrington/js-number-abbreviate.git"
},
"scripts": {
"lint": "./node_modules/.bin/jshint .",
"pretest": "npm run-script lint",
"test": "./node_modules/.bin/_mocha -- -R spec -r should test.js",
"prepublish": "npm test && npm prune"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"keywords": [
"number",
"number-abbreviate",
"abbreviate"
],
"license": "BSD-2-Clause",
"devDependencies": {
"mocha": "~1.14.0",
"jshint": "~2.3.0"
}
}