-
-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "@loki/root",
"version": "0.18.1",
"description": "Visual Regression Testing for react-storybook",
"main": "index.js",
"private": true,
"bin": {
"loki": "bin/loki"
},
"scripts": {
"format": "prettier '{,packages/**/,examples/**/,website/**/,docs/**/,test/**/,.github/**/}*.{md,js,jsx,json,yml}' --write",
"lint": "eslint packages/*/src",
"pretest": "cd examples/running-renderer-aws-lambda && yarn build && yarn start",
"test": "jest",
"test-ci": "jest --testLocationInResults --ci --outputFile=test_results.json --json",
"publish-docs": "GIT_USER=oblador yarn workspace @loki/website publish-gh-pages"
},
"engines": {
"node": ">=20"
},
"author": {
"name": "Joel Arvidsson",
"email": "[email protected]"
},
"homepage": "https://loki.js.org",
"bugs": {
"url": "https://github.com/oblador/loki/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/oblador/loki.git"
},
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"test/*",
"website",
"examples/react",
"examples/renderer-aws-lambda",
"examples/running-renderer-aws-lambda"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"eslint": "7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.5.1",
"lerna": "^3.22.1",
"prettier": "^2.6.1"
},
"resolutions": {
"chokidar": "^3.5.3"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/",
"/test/cli/generated/"
]
}
}