-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.07 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
82
83
{
"name": "raptor-test",
"version": "1.0.1",
"description": "Performance test runner for @mozilla/raptor",
"keywords": [
"testing",
"firefox-os",
"gaia",
"performance",
"b2g",
"cli"
],
"main": "dist/es5/index.js",
"author": {
"name": "Eli Perelman",
"email": "[email protected]"
},
"bugs": {
"url": "https://bugzilla.mozilla.org/enter_bug.cgi?product=Firefox%20OS&component=Gaia%3A%3APerformanceTest",
"email": "[email protected]"
},
"dependencies": {
"babel-polyfill": "6.1.19",
"babel-preset-es2015": "6.1.4",
"byline": "4.2.1",
"chai": "3.4.1",
"debug": "2.2.0",
"del": "2.0.2",
"eslint": "1.7.2",
"ghooks": "0.3.2",
"gulp": "3.9.0",
"gulp-babel": "6.1.0",
"gulp-eslint": "1.0.0",
"gulp-sourcemaps": "1.6.0",
"mocha": "2.3.4",
"empty-port": "0.0.1",
"fxos-device-service": "4.1.0",
"influent": "0.4.2",
"marionette-apps": "0.3.13",
"marionette-client": "1.9.4",
"marionette-content-script": "0.0.4",
"marionette-file-manager": "0.0.4",
"marionette-helper": "0.3.2",
"marionette-plugin-forms": "0.0.5",
"marionette-settings-api": "0.1.0",
"markdown-table": "0.4.0",
"ndjson": "1.4.3",
"ramda": "0.18.0",
"sockit-to-me": "1.0.2",
"source-map-support": "0.3.3",
"stats-lite": "2.0.0",
"superagent": "1.4.0",
"superagent-promise": "1.0.3",
"tcp-port-used": "0.1.2",
"validator": "4.3.0",
"xregexp": "3.0.0"
},
"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-b2g/mozilla-raptor",
"scripts": {
"lint": "gulp lint",
"postinstall": "gulp build",
"build": "gulp build",
"test": "mocha unit-tests"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run build && npm test"
}
}
}