-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.64 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
{
"name": "bigbrother",
"version": "0.6.8",
"author": "Marco Stagni <m.stagni@elsevier.com>",
"description": "Performance Testing tool",
"bugs": {
"url": "https://github.com/elsevierlabs-os/bigbrother/issues"
},
"homepage": "https://github.com/elsevierlabs-os/bigbrother",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"test:ut": "NODE_ENV=test mocha --reporter mocha-better-spec-reporter ./config/test.config.js 'src/**/*.test.@(js|jsx)'",
"test": "npm run test:coverage",
"test:watch": "npm run test:ut -- --watch",
"test:coverage": "nyc --reporter=lcov --reporter=text npm run test:ut",
"build": "npm run build:lib && npm run build:reports",
"build:lib": "npm run clean && babel --config-file ./config/babel.config.js src --out-dir dist",
"build:reports": "webpack --config ./config/reports.webpack.config.js",
"clean": "rimraf -rf ./dist",
"preversion": "npm run test",
"version": "npm run build && git add dist",
"postversion": "git push --no-verify && git push --tags --no-verify",
"start": "npm run build && BIGBROTHER_LOCAL=true ./index.js --config=./config/dev.bigbrother.config.js '**/*.perf.js'",
"start:file": "npm run build && ./index.js --config=./dev.bigbrother.config.js",
"start:noconfig": "npm run build && ./index.js '**/*.perf.js'",
"start:nonheadless": "npm run build && HEADLESS=false ./index.js --config=./config/dev.bigbrother.config.js '**/*.perf.js'",
"check:lint": "eslint -c ./config/.eslintrc.js --max-warnings=0 src",
"check:lint:fix": "eslint -c ./config/.eslintrc.js --max-warnings=0 src --fix",
"check:audit": "better-npm-audit audit",
"prettier": "prettier --write src"
},
"bin": {
"bigbrother": "index.js"
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"dependencies": {
"@babel/runtime": "7.17.8",
"colors": "1.4.0",
"command-line-usage": "6.1.1",
"glob": "7.2.0",
"lodash.flattendeep": "4.4.0",
"minimist": "1.2.6",
"mocha": "9.2.2",
"node-fetch": "2.6.7",
"object-inspect": "1.12.0",
"ora": "5.4.1",
"puppeteer": "1.20.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-icons": "3.10.0",
"recharts": "2.1.14",
"replace-in-file": "6.1.0",
"tree-kill": "1.2.2",
"yargs": "17.3.1"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/register": "7.17.7",
"ajv": "8.11.0",
"autoprefixer": "10.4.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.4",
"better-npm-audit": "3.7.3",
"chai": "4.3.6",
"chai-jest-snapshot": "2.0.0",
"css-loader": "6.7.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.32.0",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-react": "7.26.0",
"husky": "7.0.4",
"mini-css-extract-plugin": "2.6.0",
"mocha-better-spec-reporter": "3.1.0",
"node-sass": "9.0.0",
"nyc": "15.1.0",
"postcss": "8.4.31",
"postcss-loader": "6.2.1",
"prettier": "2.0.5",
"proxyquire": "2.1.3",
"rimraf": "3.0.2",
"sass-loader": "13.3.2",
"sinon": "13.0.1",
"terser-webpack-plugin": "5.3.1",
"webpack": "5.89.0",
"webpack-cli": "4.9.2"
}
}