-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.81 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
{
"name": "react-native-radial-context-menu",
"version": "0.0.2",
"description": "A react-native implementation of a radial action menu",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./build",
"format": "prettier --trailing-comma es5 --write \"./src/**/*.ts?(x)\"",
"lint": "tslint -c tslint.json \"./src/**/*.ts?(x)\"",
"prepare": "npm run clean && npm run build",
"start": "tsc -w",
"test": "jest"
},
"main": "build/index.js",
"typings": "index.d.ts",
"keywords": [
"radial",
"action",
"menu",
"radial",
"menu"
],
"repository": {
"type": "git",
"url": "https://github.com/thegreatercurve/react-native-radial-context-menu.git"
},
"author": "John Flockton",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.8",
"@types/react": "^16.4.18",
"@types/react-native": "^0.57.7",
"@types/react-test-renderer": "^16.0.3",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^4.0.1",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"react": "^16.6.0",
"react-native": "^0.57.4",
"react-test-renderer": "^16.6.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"babel": {
"presets": [
"react-native"
]
},
"jest": {
"preset": "react-native",
"globals": {
"ts-jest": {
"babelConfig": true
},
"window": {}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": ".test.(ts|tsx)$",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}