-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "numify",
"version": "1.0.3",
"description": "Shortern long numbers to Human Readable K M B format",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "yarn build && node ./test/index.js",
"watch": "rollup -cw",
"commit": "gacp",
"clean:dist": "npm exec -- rimraf ./dist"
},
"license": "MIT",
"devDependencies": {
"gacp": "^3.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"typescript": "^4.8.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcnaveen/numify.git"
},
"funding": "https://github.com/sponsors/mcnaveen",
"author": {
"name": "MC.Naveen",
"email": "[email protected]",
"url": "https://mcnaveen.com"
},
"bugs": {
"url": "https://github.com/mcnaveen/numify/issues"
},
"homepage": "https://github.com/mcnaveen/numify#readme",
"keywords": [
"numify",
"number",
"human",
"readable",
"k",
"M",
"B",
"T",
"shorten",
"shorten-number"
],
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
}
}