forked from happo/happo.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.53 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.53 KB
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
94
95
96
{
"name": "happo.io",
"version": "3.19.0",
"description": "Visual diffing for UI components",
"main": "./build/index.js",
"bin": {
"happo": "./build/cli.js",
"happo-ci-travis": "./bin/happo-ci-travis",
"happo-ci-circleci": "./bin/happo-ci-circleci",
"happo-ci": "./bin/happo-ci"
},
"scripts": {
"update-toc": "./scripts/gh-md-toc --insert README.md",
"test": "jest --runInBand",
"lint": "eslint .",
"build": "rimraf build && babel src --ignore 'test/.*' --out-dir build --copy-files",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happo/happo.io.git"
},
"keywords": [
"visual",
"diffing",
"ui",
"testing",
"snapshots"
],
"author": "Henric Trotzig",
"license": "MIT",
"bugs": {
"url": "https://github.com/happo/happo.io/issues"
},
"homepage": "https://github.com/happo/happo.io#readme",
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test/jestSetup.js",
"testMatch": [
"**/*-test.js*"
],
"testPathIgnorePatterns": [
"node_modules"
]
},
"prettier": {
"printWidth": 85,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"dependencies": {
"archiver": "^3.0.0",
"babel-plugin-dynamic-import-node": "^2.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"commander": "^2.15.1",
"glob": "^7.1.2",
"jsdom": "^12.0.0",
"jsonwebtoken": "^8.2.1",
"mkdirp": "^0.5.1",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"require-relative": "^0.8.7",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.9",
"string.prototype.matchall": "^3.0.0",
"supports-color": "^5.4.0"
},
"devDependencies": {
"adm-zip": "^0.4.13",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"happo-plugin-puppeteer": "^1.3.1",
"jest": "^22.4.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"webpack": "^4.14.0"
},
"peerDependencies": {
"babel-core": "^6.0.0 || ^7.0.0-0",
"babel-loader": "^7.0.0 || ^8.0.0",
"webpack": "^3.5.5 || ^4.0.0"
}
}