-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "jest-extended-snapshot",
"version": "1.1.5",
"description": "Additional Jest matchers for snapshot testing",
"repository": "https://github.com/nicoespeon/jest-extended-snapshot",
"author": "Nicolas Carlo <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"jest",
"matchers",
"extend",
"extended",
"snapshot",
"approval",
"test",
"testing"
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE.md",
"types/index.d.ts"
],
"peerDependencies": {
"jest": ">= 23.x"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"jest-snapshot": "23.6.0"
},
"devDependencies": {
"@types/jest": "23.3.10",
"husky": "1.2.1",
"jest": "23.6.0",
"prettier": "1.15.3",
"pretty-quick": "1.8.0",
"ts-jest": "23.10.5",
"tslint": "5.11.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}