This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
113 lines (113 loc) · 3.69 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "openrunner",
"version": "4.3.0",
"description": "Computest Openrunner: Benchmark and functional testing for frontend-heavy web applications",
"main": "index.js",
"scripts": {
"build:sources": "node bin/openrunner.js build source --output build",
"build:profile": "node bin/openrunner.js build firefox-profile --output PRIV/profile",
"build": "npm run build:profile",
"lint": "eslint bin building core lib runner-modules test",
"test:unit-and-integration": "mocha \"test/**/*.test.js\"",
"test:unit-and-integration:coverage": "nyc --all mocha \"test/**/*.test.js\"",
"test:unit": "mocha \"test/unit/**/*.test.js\"",
"test:unit:coverage": "nyc --all mocha \"test/unit/**/*.test.js\"",
"test:unit:coveralls": "npm run test:unit:coverage && nyc report --reporter=text-lcov | coveralls",
"test:integration": "mocha \"test/integration/**/*.test.js\"",
"test:integration:coverage": "nyc --all mocha \"test/integration/**/*.test.js\"",
"test:integration:coveralls": "npm run test:integration:coverage && nyc report --reporter=text-lcov | coveralls",
"test:coverage-report": "nyc report --reporter=html",
"test": "npm run lint && npm run test:unit-and-integration:coverage && npm run test:coverage-report",
"test:server": "sh -c 'node test/testing-server.js \"$@\" | pino-pretty -c' --",
"start": "npm run build && \"$FIREFOX_BIN\" --no-remote --profile PRIV/profile 'about:blank' 'about:devtools-toolbox?type=extension&id=openrunner%40computest.nl'",
"version": "bin/_npm_version.js && git add manifest.json",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"author": "Joris van der Wel <joris@jorisvanderwel.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/computestdev/Openrunner.git"
},
"bugs": {
"url": "https://github.com/computestdev/Openrunner/issues"
},
"homepage": "https://github.com/computestdev/Openrunner",
"files": [
"bin",
"building",
"core",
"icons",
"lib",
"runner-modules",
"manifest.json",
"index.js",
"README.md"
],
"bin": {
"openrunner": "./bin/openrunner.js"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"clone": "^2.1.1",
"coveralls": "^3.0.0",
"css.escape": "^1.5.1",
"ejs": "^3.1.3",
"eslint": ">=5.0.0",
"eslint-plugin-import": "^2.7.0",
"express": "^4.16.2",
"htmlescape": "^1.1.1",
"mime": "^2.0.3",
"mocha": "^7.2.0",
"mocha-sugar-free": "^1.3.1",
"morgan": "^1.9.0",
"nyc": "^15.0.1",
"serve-index": "^1.9.1",
"sinon": "^9.0.2",
"throttle": "^1.0.3"
},
"dependencies": {
"@cliqz-oss/firefox-client": "^0.3.1",
"archiver": "^4.0.1",
"bluebird": "^3.5.0",
"bluefox": "2.2.0",
"brace": "^0.11.0",
"browserify": "^16.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-dom": "^1.5.0",
"chai-subset": "^1.6.0",
"cjson": "^0.5.0",
"deep-store": "1.1.0",
"error-stack-parser": "^2.0.1",
"fs-extra": "^9.0.0",
"istanbul-lib-instrument": "^4.0.3",
"jsdom": "^16.2.2",
"jsonbird": ">= 3.1.0 < 4",
"jsonbird-websocket": "^1.0.0",
"performr-runner-metadata-parser": "^1.0.0",
"performr-runner-result-graph": "^6.0.0",
"pino-pretty": "^4.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"shortid": "^2.2.8",
"split": "^1.0.1",
"symbol-tree": "^3.2.2",
"ws": "^7.1.2",
"yargs": "^15.3.1",
"snyk": "^1.332.0"
},
"optionalDependencies": {
"appdmg": "^0.6.0"
},
"nyc": {
"include": [
"building/**/*.js",
"core/**/*.js",
"lib/**/*.js",
"runner-modules/**/*.js"
]
},
"snyk": true
}