This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "react-native-adaptivecards",
"description": "React Native implementation of AdaptiveCards.",
"version": "0.1.37",
"repository": {
"url": "git+https://github.com/Microsoft/react-native-adaptivecards",
"type": "git"
},
"author": "@microsoft",
"private": false,
"license": "MIT",
"files": [
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pre-commit": "yarn build",
"devtools": "react-devtools",
"build": "gulp",
"src": "yarn",
"example": "cd examples && yarn",
"tool": "cd tool && yarn",
"all": "yarn src && yarn example && yarn tool",
"test": "echo \"Error: no test specified\" && exit 1",
"run-device": "yarn build && cd examples && yarn start",
"run-ios": "yarn build && cd examples && yarn ios",
"run-android": "yarn build && cd examples && yarn android",
"run-tool": "yarn build && cd tool && yarn dev"
},
"pre-commit": {
"run": [
"pre-commit"
],
"silent": true
},
"devDependencies": {
"@types/lodash-es": "4.17.3",
"@types/react": "16.8.6",
"@types/react-native": "0.60.0",
"del": "5.1.0",
"gulp": "4.0.2",
"gulp-imagemin": "6.1.0",
"gulp-rename": "1.4.0",
"gulp-tslint": "8.1.4",
"gulp-typescript": "5.0.1",
"react-devtools": "3.6.3",
"react-native-webview": "^7.0.5",
"run-sequence": "2.2.1",
"tslint": "5.20.0",
"typescript": "3.6.2"
},
"dependencies": {},
"peerDependencies": {
"lodash-es": "4.17.14",
"react-native-webview": "^7.0.5"
}
}