-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.18 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.18 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-native-ink",
"version": "0.0.0",
"description": "React Native for CLIs",
"main": "build/index.js",
"scripts": {
"dev": "yarn ts-node --files ./Example-node.tsx",
"build": "tsc -d",
"clean": "rm -rf build/",
"coverage": "yarn codecov",
"prepack": "yarn build",
"prepublishOnly": "yarn build",
"pretest": "yarn build",
"test": "jest",
"sync": "yarn build && cp -a build/ example/node_modules/react-native-ink/build/"
},
"homepage": "https://github.com/evanbacon/react-native-ink#readme",
"bugs": {
"url": "https://github.com/evanbacon/react-native-ink/issues"
},
"author": "Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)",
"repository": {
"type": "git",
"url": "git://github.com/evanbacon/react-native-ink.git"
},
"contributors": [
"Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)"
],
"license": "MIT",
"tags": [
"react"
],
"keywords": [
"react",
"react-component",
"react-native",
"react-native-cli",
"react-ink",
"expo",
"cli"
],
"peerDependencies": {
"ink": "^2.5.0",
"react": "^16.10.1"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@expo/babel-preset-cli": "^0.2.1",
"@types/ansi-escapes": "^4.0.0",
"@types/cli-cursor": "^3.0.1",
"@types/invariant": "^2.2.30",
"@types/is-ci": "^2.0.0",
"@types/lodash.throttle": "^4.1.6",
"@types/meow": "^5.0.0",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-reconciler": "^0.18.0",
"@types/scheduler": "^0.16.1",
"@types/signal-exit": "^3.0.0",
"@types/slice-ansi": "^2.0.0",
"@types/wrap-ansi": "^3.0.0",
"@types/yoga-layout": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"@zeit/ncc": "^0.20.4",
"ansi-align": "^3.0.0",
"arrify": "^2.0.1",
"auto-bind": "^2.1.1",
"camelcase": "^5.3.1",
"cli-boxes": "^2.2.0",
"cli-truncate": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"fbjs": "^1.0.0",
"ink-image": "^2.0.0",
"ink-text-input": "^3.2.1",
"invariant": "^2.2.4",
"is-ci": "^2.0.0",
"lodash.throttle": "^4.1.1",
"log-update": "^3.3.0",
"meow": "^5.0.0",
"nexe": "^3.3.2",
"normalize-css-color": "^1.0.2",
"prettier": "^1.18.2",
"react-native-web": "^0.11.7",
"react-reconciler": "^0.22.2",
"scheduler": "^0.16.2",
"signal-exit": "^3.0.2",
"slice-ansi": "^3.0.0",
"string-length": "^3.1.0",
"string-width": "^4.1.0",
"term-size": "^2.1.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3",
"widest-line": "^3.1.0",
"yoga-layout-prebuilt": "^1.9.3"
},
"devDependencies": {
"expo-module-scripts": "^1.1.0",
"ink": "^2.5.0",
"jest-expo": "^34.1.0",
"react": "^16.10.1",
"ts-node": "^8.4.1"
}
}