-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 950 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 950 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
40
{
"name": "avdl-compiler",
"version": "1.4.10",
"description": "AVDL to Go compiler written in IcedCoffeeScript (for node)",
"main": "lib/main.js",
"scripts": {
"test": "make test",
"test:unit": "jest",
"prepublishOnly": "make test"
},
"bin": {
"avdlc": "bin/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keybase/node-avdl-compiler.git"
},
"keywords": [
"AVDL",
"Go"
],
"author": "Maxwell Krohn <max@keybase.io>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/keybase/node-avdl-compiler/issues"
},
"homepage": "https://github.com/keybase/node-avdl-compiler",
"devDependencies": {
"iced-coffee-script": "^108.0.9",
"iced-test": "0.0.22",
"jest": "^25.1.0"
},
"dependencies": {
"avdl2json": "^2.2.5",
"iced-error": "0.0.9",
"iced-runtime": "^1.0.3",
"lodash": "4.17.15",
"minimist": "^1.2.0"
}
}