-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1018 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "make-random",
"version": "3.0.2",
"description": "Make a random value, powered by Crypto",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm pack --pack-destination packs",
"patch": "tsc && npm version patch && npm publish",
"minor": "tsc && npm version minor && npm publish",
"test": "tsc && mocha --recursive",
"trial": "node ./attempt.js"
},
"repository": {
"type": "git",
"url": "https://github.com/karnthis/make-random"
},
"keywords": [
"number",
"numbers",
"string",
"strings",
"words",
"UUID",
"GUID",
"random",
"generate",
"generator",
"crypto",
"CSPRNG"
],
"author": "Erin Rivas <me@erinrivas.com>",
"homepage": "https://github.com/karnthis/make-random#readme",
"bugs": "https://github.com/karnthis/make-random/issues",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.32",
"chai": "^4.2.0",
"chai-uuid": "^1.0.6",
"mocha": "^9.1.2",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}