forked from dVelopment/meteor-random
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "meteor-random-node",
"version": "2.0.0",
"description": "Meteor's Random Package for Straight Node – with built in crypto module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node test.js",
"pretest": "yarn build",
"build": "tsc",
"prepublish": "yarn build",
"format": "prettier --write \"**/*.+(js|jsx|json|ts|tsx)\""
},
"author": "Trever Faden",
"license": "BSD-2-Clause",
"dependencies": {},
"devDependencies": {
"@types/node": "14.18.63",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dVelopment/meteor-random.git"
},
"keywords": [
"random",
"meteor",
"crypto",
"api",
"key",
"generator",
"api",
"keys",
"tokens",
"UUID"
],
"bugs": {
"url": "https://github.com/dVelopment/meteor-random/issues"
},
"homepage": "https://github.com/dVelopment/meteor-random"
}