This repository has been archived by the owner on May 26, 2020. It is now read-only.
forked from mohebifar/react-native-copilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.74 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
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
{
"name": "rn-tourguide",
"version": "1.0.0",
"description": "Make an interactive step by step tour guide for you react-native app (a rewrite of react-native-copilot)",
"main": "node_modules/expo/AppEntry.js",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"start": "yarn config:dev && expo start -c",
"test": "TZ=Europe/Paris jest --no-watchman",
"tsc": "node_modules/.bin/tsc --noEmit",
"bundle": "./scripts/gen_bundle_string.js",
"build": "yarn bundle && rm -rf lib/ && node_modules/.bin/tsc",
"config:dev": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'",
"config:npm": "json -I -f package.json -e 'this.main=\"lib/index.js\"'",
"lint": "tslint --project .",
"verify": "yarn lint && yarn tsc && yarn build",
"prepublishOnly": "yarn verify && yarn config:npm",
"postpublish": "yarn config:dev",
"cleaning": "rm -rf node_modules && rm -f yarn.lock && yarn cache clean && yarn install && watchman watch-del-all && rm -fr $TMPDIR/react-*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/react-native-copilot.git"
},
"keywords": [
"react-native",
"react-native-joyride",
"react",
"copilot",
"intro.js",
"intro"
],
"author": "Xavier Carpentier <xcapetir@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xcapentier/react-native-copilot/issues"
},
"homepage": "https://github.com/xcapentier/react-native-copilot#readme",
"devDependencies": {
"@types/hoist-non-react-statics": "3.3.1",
"@types/jest": "25.2.3",
"@types/lodash.clamp": "4.0.6",
"@types/lodash.memoize": "4.1.6",
"@types/react": "^16.9.11",
"@types/react-dom": "16.9.4",
"@types/react-native": "^0.60.22",
"@types/react-test-renderer": "16.9.2",
"babel-preset-expo": "^8.1.0",
"expo": "^37.0.0",
"jest": "^26.0.1",
"jest-react-native": "^18.0.0",
"json": "^9.0.6",
"react": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
"react-native-svg": "11.0.1",
"react-test-renderer": ">=16.8.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element)"
],
"modulePathIgnorePatterns": [
"example"
],
"globals": {
"__TEST__": true
}
},
"dependencies": {
"hoist-non-react-statics": "~3.0.1",
"lodash.clamp": "~4.0.3",
"lodash.memoize": "~4.1.2",
"flubber": "~0.4.2",
"mitt": "~1.1.3"
}
}