-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "jest-with-platform",
"version": "0.0.3",
"description": "Jest helper for running a test on the chosen platform",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.js",
"types": "lib/typescript/index.d.ts",
"repository": "https://github.com/oshimayoan/jest-with-platform.git",
"author": "@oshimayoan",
"license": "MIT",
"files": [
"lib/",
"src/"
],
"scripts": {
"build": "yarn bob build",
"prepare": "yarn build",
"test": "yarn jest --coverage",
"release": "release-it"
},
"peerDependencies": {
"jest": "^23.0.0"
},
"devDependencies": {
"@react-native-community/bob": "^0.6.1",
"@types/jest": "^24.0.17",
"@types/react-native": "^0.60.4",
"husky": "^3.0.3",
"jest": "^24.8.0",
"react": "^16.9.0",
"react-native": "^0.60.5",
"release-it": "^12.3.5",
"ts-jest": "^24.0.2",
"tsconfig-kodefox": "^1.0.1",
"tslint-config-kodefox": "^1.1.1",
"typescript": "^3.5.3"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
}
}