forked from m-pays/node-magi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 892 Bytes
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 892 Bytes
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": "nodemagi",
"version": "0.4.1",
"description": "Magi RPC client",
"keywords": [
"magi",
"xmg",
"rpc",
"crypto"
],
"repository": {
"type": "git",
"url": "git://github.com/magi-project/node-magi.git"
},
"main": "lib/magi.js",
"module": "types/magi.d.ts",
"engines": {
"node": ">= 0.4.0"
},
"devDependencies": {
"nodeunit": "*",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/magi-project/node-magi/issues"
},
"homepage": "https://github.com/magi-project/node-magi#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"types": "tsc lib/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"prepublishOnly": "npm run types"
},
"author": "joelao95 & Arkanic",
"license": "MIT"
}