-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 907 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
{
"name": "@feb199/result",
"version": "1.0.1",
"description": "Used to store log results of functions/methods and also to executes actions depending on result of functions/methods.",
"main": "index.js",
"scripts": {
"run": "node .",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feb199/Result.git"
},
"keywords": [
"promise",
"result",
"results",
"log",
"stored"
],
"exports": {
"require": "./classes/result.js",
"import": "./esm/wrapper.js"
},
"author": {
"name": "Feb199",
"alias": "DannySmoka",
"email": "[email protected]",
"url": "https://www.wolfermus.com"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/feb199/Result/issues"
},
"homepage": "https://github.com/feb199/Result#readme",
"dependencies": {
"enum": "^3.0.4"
}
}