-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.05 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": "jhf",
"version": "1.0.2",
"description": "A collection of small helpful javascript functions",
"main": "index.js",
"type": "module",
"directories": {
"test": "tests"
},
"keywords": [
"javascript",
"react",
"react native",
"vue",
"node",
"deno",
"web",
"js",
"javascript helper functions",
"react js",
"vue js"
],
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobbyaxe61/javascript-helper-functions.git"
},
"author": "bobbyaxe61",
"license": "MIT",
"bugs": {
"url": "https://github.com/bobbyaxe61/javascript-helper-functions/issues"
},
"homepage": "https://github.com/bobbyaxe61/javascript-helper-functions#readme",
"dependencies": {
"dotenv": "^10.0.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"jest": "^27.1.0"
},
"exports": {
"./client-helper": "./helpers/client/client-helper.js",
"./server-helper": "./helpers/server/server-helper.js"
}
}