-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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": "messup",
"version": "0.2.3",
"description": "A random string and number generator, completed with crypto random capabilities.",
"main": "./dist/index.js",
"browser": "./dist/index.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && terser -c -m --comments /license/i -o ./dist/index.min.js ./dist/index.js",
"dev": "rollup -c -w",
"test": "npm run build && mocha",
"testing": "mocha -w"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.9.0",
"chai": "^4.2.0",
"mocha": "^10.1.0",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"terser": "^4.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yqlim/Messup.git"
},
"keywords": [
"random",
"string",
"number",
"base64",
"base62",
"hex",
"byte",
"bytes",
"crypto",
"randomBytes"
],
"author": "Yong Quan Lim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yqlim/Messup/issues"
},
"homepage": "https://github.com/yqlim/Messup#readme"
}