-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
116 lines (116 loc) · 3.49 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
114
115
116
{
"name": "speedo",
"version": "1.2.11",
"author": "Christian Bromann <[email protected]>",
"description": "Simple performance testing tool using SauceLabs",
"license": "Apache-2.0",
"homepage": "https://github.com/saucelabs/speedo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/saucelabs/speedo.git"
},
"keywords": [
"saucelabs",
"frontend",
"performance",
"testing",
"webdriver",
"perf",
"devtools",
"browser",
"speedIndex"
],
"bugs": {
"url": "https://github.com/saucelabs/speedo/issues"
},
"main": "build/index.js",
"bin": {
"speedo": "./bin/speedo"
},
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf ./build ./coverage",
"compile": "NODE_ENV=production babel src -d build",
"docker": "run-s docker:login docker:build docker:tag docker:push:*",
"docker:build": "docker build -t saucelabs/speedo .",
"docker:login": "docker login -u \"$DOCKER_USERNAME\" -p \"$DOCKER_PASSWORD\"",
"docker:push:latest": "docker push saucelabs/speedo:latest",
"docker:push:version": "docker push saucelabs/speedo:$npm_package_version",
"docker:tag": "docker tag saucelabs/speedo saucelabs/speedo:$npm_package_version",
"eslint": "eslint ./src ./tests",
"prepublishOnly": "npm prune && run-s build",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"test": "run-s eslint test:unit",
"test:unit": "jest --coverage",
"watch": "npm run compile -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.1.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-source-map-support": "^2.0.1",
"codecov": "^3.2.0",
"eslint": "^4.7.2",
"eslint-plugin-import": "^2.8.0",
"jest": "^24.1.0",
"jest-snapshot-serializer-ansi": "^1.0.0",
"npm-run-all": "^4.1.5",
"release-it": "^14.11.8",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.test.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 93,
"functions": 100,
"lines": 99,
"statements": 99
}
},
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!<rootDir>/node_modules/",
"!<rootDir>/tests/__fixtures__/"
],
"coveragePathIgnorePatterns": [
"src/scripts"
],
"snapshotSerializers": [
"jest-snapshot-serializer-ansi"
]
},
"dependencies": {
"chalk": "^3.0.0",
"change-case": "^4.1.1",
"ora": "^4.0.3",
"ordinal": "^1.0.3",
"pretty-ms": "^5.1.0",
"sauce-connect-launcher": "^1.3.1",
"saucelabs": "^4.5.0",
"table": "^5.4.6",
"tmp": "^0.1.0",
"webdriverio": "^5.17.0",
"yargs": "^15.0.2"
}
}