-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
{
"name": "react-native-col",
"version": "2.0.4",
"description": "Flexbox made easy & semantic",
"browser": "dist/index.js",
"react-native": "src/index.tsx",
"main": "src/index.tsx",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && tsc -p .",
"build-lint": "tsc --noEmit",
"test": "jest src/",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eightyfive/react-native-col.git"
},
"keywords": [
"react-native",
"flexbox",
"column",
"col",
"row",
"dial"
],
"author": "0x55 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eightyfive/react-native-col/issues"
},
"homepage": "https://github.com/eightyfive/react-native-col#readme",
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^18.0.12",
"@types/react-native": "^0.69.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.7.0",
"prettier": "^2.6.2",
"react-native": "^0.69.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.5",
"typescript": "^4.9"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}