-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
{
"name": "@testplane/plugins-profiler",
"version": "1.0.0",
"description": "A plugin to profile another plugins",
"main": "build/index.js",
"repository": "https://github.com/gemini-testing/testplane-plugins-profiler",
"license": "MIT",
"keywords": [
"testplane",
"hermione",
"testplane-plugins-profiler"
],
"scripts": {
"build": "npm run clean && tsc",
"watch:build": "npm run build -- --watch",
"lint": "eslint --config .eslintrc.json src",
"fix": "npm run lint -- --fix",
"test": "run-s build test:unit",
"test:unit": "jest --runInBand=true --watchAll=false",
"release": "standard-version",
"clean": "rimraf build *.tsbuildinfo",
"commit": "cz",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"bluebird": "^3.7.2",
"debug": "^4.3.2",
"fs-extra": "^10.0.0",
"gemini-configparser": "^1.1.0",
"hermione-profiler-ui": "^0.0.4",
"is-promise": "^4.0.0",
"lodash": "^4.17.21",
"stack-trace": "0.0.9"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.171",
"@types/node": "^18.18.11",
"@types/stack-trace": "0.0.29",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-gemini-testing": "^3.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^29.5.0",
"jest-extended": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"testplane": "^0.1.0-rc.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"build",
"!build/**/*.spec.js",
"!build/**/*.spec.d.ts"
]
}