-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.41 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
{
"name": "emma-react-native-sdk",
"version": "1.7.1",
"homepage": "https://emma.io",
"description": "React Native EMMA SDK libs and examples",
"author": "EMMA / Ignacio Lago",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"react-native",
"react",
"native",
"emma"
],
"repository": {
"type": "git",
"url": "https://github.com/EMMADevelopment/emma-react-native-sdk.git"
},
"scripts": {
"example:android": "cd example; react-native run-android; cd ..",
"example:ios": "cd example; react-native run-ios; cd ..",
"example:start": "cd example; react-native start; cd ..",
"build": "rimraf dist/; tsc --build tsconfig.json",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"peerDependencies": {
"react-native": ">=0.63.3"
},
"devDependencies": {
"@types/react-native": "^0.71.3",
"eslint": "^7.32.0",
"husky": "^5.2.0",
"jest": "^25.1.0",
"lint-staged": "^10.5.4",
"react": "18.0.0",
"react-native": "0.69.2",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"src/**/*.ts": [
"npm run build"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}