forked from computestdev/Openrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.94 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
{
"name": "openrunner",
"version": "2.5.0",
"description": "Computest Openrunner: Benchmark and functional testing for frontend-heavy web applications",
"main": "index.js",
"scripts": {
"build:sources": "node bin/build-sources.js --output build",
"build:profile": "node bin/build-firefox-profile --input build --output PRIV/profile",
"build": "npm run build:sources && npm run build:profile",
"lint": "eslint bin building core lib runner-modules test",
"test:unit": "mocha 'test/**/*.test.js'",
"test:unit:coverage": "nyc --all mocha 'test/**/*.test.js'",
"test:unit:coverage:report": "nyc report --reporter=html",
"test:unit:coveralls": "npm run test:unit:coverage && nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run test:unit:coverage && npm run test:unit:coverage:report",
"test:server": "sh -c 'node bin/testing-server.js \"$@\" | bunyan' --",
"start": "npm run build && \"$FIREFOX_BIN\" --no-remote --profile PRIV/profile --jsconsole"
},
"author": "Joris van der Wel <[email protected]>",
"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-build-sources": "./bin/build-sources.js",
"openrunner-build-firefox-profile": "./bin/build-firefox-profile.js"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"bunyan": "^1.8.12",
"clone": "^2.1.1",
"coveralls": "^3.0.0",
"css.escape": "^1.5.1",
"eslint": ">=4.13.1 < 5",
"eslint-plugin-import": "^2.7.0",
"express": "^4.16.2",
"htmlescape": "^1.1.1",
"jsdom": "^11.5.1",
"mime": "^2.0.3",
"mocha": "^5.0.0",
"mocha-sugar-free": "^1.3.1",
"morgan": "^1.9.0",
"nyc": "^11.3.0",
"serve-index": "^1.9.1",
"sinon": "^4.0.1",
"throttle": "^1.0.3"
},
"dependencies": {
"archiver": "^2.1.0",
"bluebird": "^3.5.0",
"bluefox": "^2.0.0",
"brace": "^0.11.0",
"browserify": "^15.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",
"error-stack-parser": "^2.0.1",
"fs-extra": "^5.0.0",
"istanbul-lib-instrument": "^1.9.1",
"jsonbird": ">= 3.1.0 < 4",
"performr-runner-metadata-parser": "^1.0.0",
"performr-runner-result-graph": "^5.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"robust-websocket": "^0.3.0",
"shortid": "^2.2.8",
"split": "^1.0.1",
"ws": "^4.0.0",
"yargs": "^10.0.3"
},
"nyc": {
"include": [
"building/**/*.js",
"core/**/*.js",
"lib/**/*.js",
"runner-modules/**/*.js"
]
}
}