-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
49
50
51
{
"name": "node-gblk",
"version": "0.0.284",
"description": "GBLK language fully written in node.js",
"main": "main.js",
"types": "src/typings/defs.d.ts",
"bin": {
"gblok": "./cmd/gblok/cli.js",
"gpm": "./cmd/gpm/cli.js"
},
"homepage": "https://gblk-lang.glitch.me/",
"repository": {
"type": "git",
"url": "https://github.com/Fastering18/node-gblk.git"
},
"bugs": {
"url": "https://github.com/Fastering18/node-gblk/issues",
"email": "Fastering18@gmail.com"
},
"scripts": {
"build": "./pkgbuild.sh",
"clean": "rmdir bin",
"test": "node main.test.js"
},
"pkg": {
"targets": [
"node14-win-x64",
"node14-linux-arm64"
],
"outputPath": "bin"
},
"keywords": [
"gblk",
"node-gblk",
"language",
"cli"
],
"author": "Fastering18",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"caporal": "^1.4.0",
"chalk": "^1.1.3",
"deasync": "^0.1.28",
"form-data": "^4.0.0",
"ora": "^5.4.1",
"readline-sync": "^1.4.10",
"streamifier": "^0.1.1",
"tar": "^6.1.10"
}
}