-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.05 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
52
53
54
{
"name": "b3-strace-parser",
"version": "0.3.0",
"description": "strace to json parser",
"main": "cli.js",
"bin": {
"b3": "./cli.js"
},
"engines": {
"node": ">=8.10"
},
"keywords": [
"strace"
],
"preferGlobal": true,
"directories": {
"test": "test",
"lib": "lib"
},
"files": [
"grammar.pegjs",
"lib/"
],
"dependencies": {
"commander": "^2.19.0",
"debug": "^4.1.1",
"nexe": "^3.0.0-beta",
"node-exceptions": "^4.0.1",
"pegjs": "^0.10.0",
"pegjs-backtrace": "^0.1.2"
},
"devDependencies": {
"mocha": "^5.2.0",
"expect.js": "^0.3.1",
"typescript": "^3.3"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannykopping/b3.git"
},
"author": {
"email": "dannykopping@gmail.com",
"name": "Danny Kopping",
"url": "https://github.com/dannykopping"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dannykopping/b3/issues"
},
"homepage": "https://github.com/dannykopping/b3#readme"
}