-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "@productbrew/react-native-collapsible-tree",
"version": "0.1.3",
"author": "Luke Czyszczonik",
"repository": {
"type": "git",
"url": "git+https://github.com/productbrew/react-native-collapsible-tree"
},
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"source": "src/index",
"types": "lib/typescript/index.d.ts",
"keywords": [
"react-native",
"pill"
],
"scripts": {
"test": "echo shrug && exit 1",
"prepare": "bob build",
"release": "release-it ",
"typescript": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.15.4",
"@react-native-community/bob": "^0.7.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"release-it": "^14.11.6",
"typescript": "~4.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}