-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "@draftbit/ui",
"version": "50.5.2",
"description": "Draftbit UI Library",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"android",
"ios",
"cpp",
"draftbit-ui.podspec"
],
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "../../node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"react-native",
"ios",
"android"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/draftbit/react-native-jigsaw",
"directory": "packages/ui"
},
"author": "Draftbit <[email protected]> (https://draftbit.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/draftbit/react-native-jigsaw/issues"
},
"homepage": "https://github.com/draftbit/react-native-jigsaw#readme",
"dependencies": {
"@draftbit/core": "50.5.2",
"@draftbit/native": "50.5.2",
"@draftbit/theme": "50.5.2",
"react-native-reanimated": "~3.6.2"
},
"devDependencies": {
"metro-react-native-babel-preset": "^0.77.0"
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"testPathIgnorePatterns": [
"lib",
"__mocks__"
]
}
}