-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.22 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
85
86
87
{
"name": "rn-nested-text",
"version": "1.0.0",
"description": "Simplify Nested Text rendering for React Native and React Native Web",
"author": "Youssef EDDIBILI",
"repository": "github:youedd/rn-nested-text",
"homepage": "https://github.com/youedd/rn-nested-text",
"keywords": [
"react-native",
"text",
"style",
"props",
"nested",
"react-native-web",
"mixed",
"text-props"
],
"source": "src/index.ts",
"react-native": "src/index.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"license": "MIT",
"scripts": {
"start": "react-native start",
"build:clean": "del dist src/parser.js",
"build:parser": "jison src/parser/parser.jison -o src/parser/parser.js -m js && add-line src/parser/parser.js 'export default parser' ",
"lint": "tsc --noEmit && ts-standard",
"lint:fix": "ts-standard --fix",
"test": "yarn lint && jest",
"prepare": "yarn build:clean && yarn build:parser && bob build && husky install"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"devDependencies": {
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-native": "^0.66.11",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"add-line": "^1.0.1",
"del-cli": "^4.0.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jison": "^0.4.18",
"metro-react-native-babel-preset": "^0.66.2",
"react": "^17.0.2",
"react-native": "^0.66.4",
"react-native-builder-bob": "^0.18.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.2",
"ts-standard": "^11.0.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"ts-standard": {
"ignore": [
"lib",
"src/**/*.js",
"App.tsx"
]
}
}