-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.36 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
{
"name": "@testplane/storybook",
"version": "1.5.0",
"description": "Testplane plugin that enables runtime screenshot storybook tests autogeneration",
"main": "build/index.js",
"files": [
"build",
"plugin.js",
"preset.js"
],
"scripts": {
"build": "npm run clean && tsc",
"build-spec": "tsc --build tsconfig.spec.json",
"clean": "rimraf build/ build-spec/ *.tsbuildinfo",
"prepack": "npm run clean && npm run build",
"test": "npm run lint && npm run unit",
"lint": "npm run eslint && npm run style",
"reformat": "eslint src --ext .ts --fix && prettier --write 'src/**/*.ts' '**/*.json'",
"prettier-watch": "onchange 'src/**/*.ts' '**/*.json' -- prettier --write {{changed}}",
"style": "prettier --check 'src/**/*.ts' '**/*.json'",
"eslint": "eslint src --ext .ts",
"unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/testplane-storybook.git"
},
"engines": {
"node": ">= 18.0.0"
},
"keywords": [
"storybook",
"testplane",
"hermione",
"testplane-plugin",
"autotest"
],
"author": "Dmitriy Dudkevich <dudkevich@yandex-team.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-storybook/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-storybook#readme",
"devDependencies": {
"@gemini-testing/commander": "^2.15.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.172",
"@types/node": "^12.20.19",
"@types/npm-which": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-gemini-testing": "^3.0.0",
"jest": "^27.5.1",
"jest-extended": "^0.11.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"testplane": "^0.1.0-rc.0",
"ts-jest": "^27.1.5",
"typescript": "^4.3.5"
},
"dependencies": {
"fs-extra": "^11.2.0",
"gemini-configparser": "^1.3.2",
"lodash": "^4.17.21",
"npm-which": "^3.0.1"
},
"peerDependencies": {
"storybook": "^6.4.0 || ^7.0.0 || ^8.0.0"
}
}