-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 904 Bytes
/
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
{
"name": "jest-pdf-snapshot",
"version": "0.5.4",
"description": "Jest matcher for pdf comparison",
"main": "src/index.js",
"repository": "https://github.com/zeptometer/jest-pdf-snapshot.git",
"author": "Yuito Murase <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint ./ --ignore-path .gitignore --ext .js",
"test": "jest"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.1.0",
"jest-runner-groups": "^2.0.1"
},
"dependencies": {
"chalk": "^4.0.0",
"lodash": "^4.17.15",
"shelljs": "^0.8.4",
"tmp": "^0.2.1"
},
"jest": {
"runner": "groups",
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/mock_project",
"__tests__/sandbox"
]
}
}