-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
{
"name": "jest-serializer-path",
"version": "0.1.15",
"description": "Remove absolute paths from your Jest snapshots",
"author": "tribou",
"license": "Apache-2.0",
"main": "lib/index.js",
"engines": {
"node": ">=6.4.x",
"npm": ">=3.10.3"
},
"homepage": "https://github.com/tribou/jest-serializer-path#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tribou/jest-serializer-path.git"
},
"bugs": {
"url": "https://github.com/tribou/jest-serializer-path/issues"
},
"keywords": [
"jest",
"serializer"
],
"files": [
"lib/",
"yarn.lock"
],
"devDependencies": {
"babel-eslint": "^8.0.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-tribou": "^1.0.5",
"fs-extra": "^5.0.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-junit": "^3.3.0",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.iserror": "^3.1.1",
"slash": "^2.0.0"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"testRegex": "/(lib)/.*_test\\.js$",
"testResultsProcessor": "jest-junit",
"snapshotSerializers": [
"./"
],
"resetModules": true
},
"lint-staged": {
"*.{js,md,json}": [
"prettier --write",
"git add"
]
},
"scripts": {
"coverage": "coveralls < coverage/lcov.info",
"lint": "eslint --ignore-path .gitignore lib",
"format": "prettier **/*.{js,md,json} --write",
"test-jest": "cross-env NODE_ENV=test jest",
"test": "npm run --silent lint && npm run --silent test-jest",
"watch": "npm run test-jest -- --watch",
"yarn": "npm run --silent yarn-bin -- install --prefer-offline",
"yarn-bin": "node bin/yarn-1.6.0.js",
"precommit": "lint-staged",
"prepush": "npm run test"
}
}