-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "@squidcloud/react-native-ticketmaster",
"version": "0.0.9",
"description": "React Native wrapper for the Ticketmaster Ignite SDK",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"scripts": {
"clean": "find . \\( -name \"node_modules\" -o -name \"lib\" \\) -type d -exec rm -rf {} +",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bob build",
"publish": "npm run build && npm publish --access public"
},
"author": "Colin Dunn <colin@squid.cloud>",
"license": "MIT",
"homepage": "https://github.com/squidcloudio/react-native-ticketmaster#readme",
"peerDependencies": {
"expo": ">=48.0.0",
"react-native": ">=0.65.0 <1.0.x"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.2.48",
"prettier": "^3.2.5",
"react-native-builder-bob": "^0.23.1",
"typescript": "^5.3.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}