-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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": "inkmbt",
"version": "1.0.3",
"description": "Format numbers in Twitter like formats, thousands in K, millions in M and Trillions in T.",
"main": "./src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./public/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "git push --tags",
"build": "babel src -d public -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vahlcode/inkmbt.git"
},
"keywords": [
"Numbers",
"Twitter",
"Millions",
"Billions",
"JavaSCript",
"React",
"Frontend"
],
"author": "Valentine Elum",
"license": "MIT",
"bugs": {
"url": "https://github.com/vahlcode/inkmbt/issues"
},
"homepage": "https://inkmbt.vercel.app",
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5"
},
"dependencies": {
"babel-plugin-add-module-exports": "^1.0.2"
}
}