-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.28 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
{
"name": "loki",
"version": "0.15.0",
"description": "Visual Regression Testing for react-storybook",
"main": "index.js",
"bin": {
"loki": "bin/loki"
},
"scripts": {
"serve-docs": "gitbook serve",
"build-docs": "(gitbook install || (npm rebuild node-sass && gitbook install)) && gitbook build",
"publish-docs": "./bin/publish-docs",
"format": "prettier '{,src/**/,examples/**/}*.{js,json}' --write",
"lint": "eslint *.js src",
"test": "jest"
},
"engines": {
"node": ">=7.6"
},
"keywords": [
"storybook",
"react-storybook",
"testing",
"visual testing",
"visual testing",
"react-native",
"react",
"mobile",
"ios",
"android",
"web"
],
"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",
"dependencies": {
"chalk": "^2.4.1",
"chrome-launcher": "^0.10.5",
"chrome-remote-interface": "^0.27.0",
"ci-info": "^1.6.0",
"debug": "^4.1.0",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"get-port": "^4.0.0",
"gm": "^1.23.1",
"hoist-non-react-statics": "^3.2.1",
"listr": "^0.14.3",
"looks-same": "^4.0.0",
"minimist": "^1.2.0",
"osnap": "^1.1.0",
"ramda": "^0.26.1",
"shelljs": "^0.8.3",
"transliteration": "^1.6.6",
"wait-on": "^3.2.0",
"ws": "^6.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-anchorjs": "^1.1.1",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.3.0",
"gitbook-plugin-theme-gestalt": "^1.0.2",
"jest": "^23.6.0",
"prettier": "^1.15.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
]
}
}