-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "react-native-controlled-mentions",
"version": "2.2.5",
"description": "Fully controlled React Native mentions component",
"keywords": [
"react",
"react-native",
"mentions",
"text",
"text-input"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"test": "jest",
"changelog": "github_changelog_generator -u dabakovich -p react-native-controlled-mentions"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dabakovich/react-native-controlled-mentions.git"
},
"author": "David Tabaka <dabakovich@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/diff": "^4.0.2",
"@types/jest": "^26.0.19",
"@types/react-native": "0.63.2",
"jest": "26.6.3",
"ts-jest": "^26.4.4",
"typescript": "4.0.5"
},
"peerDependencies": {
"react": ">=16.0",
"react-native": ">=0.57"
},
"dependencies": {
"diff": "5.0.0",
"string.prototype.matchall": "4.0.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}