-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "react-native-segmented-text-input",
"version": "0.0.1-alpha.12",
"description": "A wickedly customizable <TextInput /> for React Native. Useful for tags, spellchecking, whatever.",
"main": "dist",
"repository": "https://github.com/cawfree/react-native-segmented-text-input",
"author": "Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"private": false,
"keywords": [
"react-native",
"tag",
"input",
"twitter",
"mention",
"regexp",
"highlighter"
],
"scripts": {
"build": "yarn ; babel src --out-dir dist ; rm -rf node_modules",
"prettify": "yarn prettier --write \"**/*.js\"",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.19",
"type-check": "^0.4.0",
"use-debounce": "^5.1.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-native": "^0.63.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"leasot": "^11.1.0",
"prettier": "^2.0.5"
}
}