-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "uniquechars",
"version": "1.1.5",
"description": "Generate unique strings and numbers from a strings or numbers. Good for generating unique ids, usernames, file names and passwords.",
"type": "module",
"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/uniquechars.git"
},
"keywords": [
"Strings",
"numbers",
"randoms",
"unique",
"ids",
"JavaScript",
"Frontend",
"Developers",
"UI",
"usernames",
"passwords",
"hashes"
],
"author": "Valentine Elum",
"license": "MIT",
"bugs": {
"url": "https://github.com/vahlcode/uniquechars/issues"
},
"homepage": "https://uniquechars.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"
}
}