forked from testing-library/jest-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.42 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
{
"name": "@testing-library/jest-native",
"version": "0.0.0-semantically-released",
"description": "Custom jest matchers to test the state of React Native",
"main": "dist/index.js",
"types": "extend-expect.d.ts",
"scripts": {
"commit": "git-cz",
"commit:add": "git add .",
"commit:all": "npm run commit:add && npm run commit",
"readme:toc": "doctoc README.md --maxlevel 3 --title '## Table of Contents'",
"test": "jest --colors",
"pretty-quick": "pretty-quick --staged",
"prepublishOnly": "rm -rf dist; babel src --out-dir dist --ignore 'src/__tests__/*'",
"semantic-release": "semantic-release",
"test:coverage": "jest --coverage --colors",
"test:watch": "jest --watch --coverage"
},
"files": [
"dist",
"extend-expect.js",
"extend-expect.d.ts"
],
"keywords": [
"testing",
"testing-library",
"jest",
"react-native"
],
"dependencies": {
"chalk": "^2.4.1",
"jest-diff": "^24.0.0",
"jest-matcher-utils": "^24.0.0",
"ramda": "^0.26.1",
"pretty-format": "^24.0.0",
"redent": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/runtime": "7.4.0",
"@testing-library/react-native": "^6.0.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.52.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react": "16.8.6",
"react-native": "0.63.2",
"react-test-renderer": "16.8.6",
"semantic-release": "^15.13.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"proseWrap": "always"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/testing-library/jest-native.git"
},
"author": "Brandon Carroll",
"license": "MIT",
"bugs": {
"url": "https://github.com/testing-library/jest-native/issues"
},
"homepage": "https://github.com/testing-library/jest-native#readme"
}