-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 846 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
{
"name": "deabbreviate-number",
"version": "1.0.0",
"description": "Deabbreviates a number string and remove unit letters e.g. '3.5m' => 3500000",
"author": "Jason Adkison <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jasonadkison/deabbreviate-number-js.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-deabbreviate",
"deabbreviate",
"abbreviate"
],
"license": "ISC",
"devDependencies": {
"jshint": "^2.10.2",
"mocha": "^6.2.1",
"should": "^13.2.3"
}
}