-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 870 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
40
41
42
43
44
{
"name": "asmref",
"version": "0.1.4",
"description": "Command line tool to lookup assembly reference for multiple architectures",
"main": "asmref.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": { "asmref" : "./asmref.js" },
"files": [
"README.md",
"LICENSE",
"asmref.js",
"resources/reference.sqlite"
],
"keywords": [
"asm",
"assembly",
"reference",
"x86",
"x86_64",
"mips",
"arm",
"xtensa",
"commandline",
"cli",
"tool"
],
"author": {
"name": "Jaime Peñalba",
"email": "jpenalbae@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jpenalbae/asmref.git"
},
"license": "GPL-3.0",
"dependencies": {
"minimist": "^1.1.1",
"sqlite3": "^4.0.1",
"temp": "^0.8.3",
"which": "^1.1.1"
}
}