-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@mozilla/raptor",
"version": "5.0.0",
"preferGlobal": true,
"description": "CLI tool for Firefox OS Gaia performance tests",
"keywords": [
"testing",
"firefox-os",
"gaia",
"performance",
"b2g",
"cli"
],
"main": "lib/index.js",
"author": {
"name": "Eli Perelman",
"email": "[email protected]"
},
"bin": {
"raptor": "./raptor"
},
"bugs": {
"url": "https://bugzilla.mozilla.org/enter_bug.cgi?product=Firefox%20OS&component=Gaia%3A%3APerformanceTest",
"email": "[email protected]"
},
"config": {
"cli": {
"plugins": [
"./lib/extensions/db",
"./lib/extensions/exits",
"./lib/extensions/errors",
"./lib/extensions/json",
"./lib/extensions/meta",
"./lib/extensions/options",
"./lib/extensions/stdin",
"./lib/commands/version",
"raptor-test",
"raptor-query",
"raptor-regression",
"raptor-submit",
"raptor-track",
"raptor-bug"
]
},
"cosmic": {
"packageProp": false,
"js": false,
"argv": false
}
},
"devDependencies": {},
"dependencies": {
"cosmiconfig": "1.0.1",
"debug": "2.2.0",
"ramda": "0.18.0",
"raptor-bug": "2.0.0",
"raptor-query": "4.0.0",
"raptor-regression": "2.0.0",
"raptor-submit": "1.0.0",
"raptor-test": "1.0.0",
"raptor-track": "2.0.0",
"vorpal": "1.4.1"
},
"directories": {},
"homepage": "https://developer.mozilla.org/en-US/Firefox_OS/Automated_testing/Raptor",
"license": "Apache-2.0",
"maintainers": [
{
"name": "eliperelman",
"email": "[email protected]"
},
{
"name": "rwood-moz",
"email": "[email protected]"
}
],
"repository": "mozilla-raptor/cli",
"scripts": {
"init": "npm unlink && rm -rf node_modules && npm link raptor-test raptor-query raptor-regression raptor-submit raptor-track raptor-bug && npm install && npm link"
}
}