-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.15 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
{
"name": "barbell",
"version": "1.0.4",
"description": "Easily benchmark your JS code's performance via CLI using similar (but different) interface to Jest.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"barbell": "./dist/lib/cli.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint 'index.ts' './__tests__/**/*.ts' './lib/**/*.ts' -c .eslintrc.json --ignore-path .eslintignore",
"lint:fix": "eslint 'index.ts' './__tests__/**/*.ts' './lib/**/*.ts' -c .eslintrc.json --ignore-path .eslintignore --fix",
"test": "jest --coverage=true",
"test:watch": "jest --watch",
"bench": "node ./dist/lib/cli.js",
"pre-publish": "npm run lint && npm run build && npm run test"
},
"keywords": [
"test",
"testing",
"benchmark",
"performance",
"optimize",
"optimise"
],
"repository": {
"type": "git",
"url": "https://github.com/lvl99/barbell.git"
},
"homepage": "https://github.com/lvl99/barbell",
"bugs": "https://github.com/lvl99/barbell/issues",
"author": "Matt Scheurich <[email protected]>",
"license": "MIT",
"dependencies": {
"benchmark": "2.1.4",
"chalk": "4.1.2",
"commander": "9.4.1",
"eslint-plugin-jest": "^27.1.5",
"find-up": "5.0.0",
"glob": "8.0.3",
"js-yaml": "4.1.0",
"listr": "0.14.3",
"lodash": "4.17.21",
"pkg-dir": "7.0.0",
"rxjs": "7.5.7",
"tslib": "2.4.1",
"uuid": "9.0.0",
"vm2": "3.9.11"
},
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.3",
"@types/js-yaml": "^4.0.5",
"@types/listr": "^0.14.4",
"@types/lodash": "^4.14.189",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"object-get": "^2.1.1",
"object-path": "^0.11.8",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}