-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "jamscriptID-20",
"description": "Compiler for the JAMScript language",
"version": "1.0.0",
"license": "GPL",
"keywords": [
"c",
"javascript",
"cloud-computing",
"iot-framework",
"iot",
"programming-language",
"iot-middleware",
"fog-computing"
],
"homepage": "https://citelab.github.io/JAMScript/",
"repository": {
"type": "git",
"url": "git+https://github.com/citelab/JAMScriptID-20.git"
},
"bugs": "https://github.com/citelab/JAMScript/issues",
"scripts": {
"preinstall": "scripts/install/preinstall.sh",
"install": "node-gyp rebuild",
"postinstall": "scripts/install/postinstall.sh",
"postversion": "git push && git push --tags && npm publish",
"prepublishOnly": "scripts/install/prepublishOnly.sh",
"link": "scripts/install/link.sh"
},
"bin": {
"jamc": "./index.js"
},
"dependencies": {
"jszip": "^3.1.5",
"node-gyp": "^5.0.1",
"ohm-js": "^0.13.1",
"tiny-worker": "^2.3.0"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 6.0.0"
},
"os": [
"darwin",
"linux"
],
"gypfile": true,
"preferGlobal": true,
"files": [
"deps",
"lib/jamlib",
"lib/ohm",
"scripts/install/preinstall.sh",
"scripts/install/postinstall.sh",
"scripts/install/global-fix.sh",
"tools",
"index.js",
"binding.gyp"
]
}