This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
94 lines (94 loc) · 2.21 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
88
89
90
91
92
93
94
{
"name": "react-native-lazy-index",
"version": "2.0.0-dev",
"description": "RAM bundle friendly index.js with on-demand loaded modules",
"keywords": [
"babel",
"bundle",
"codegen",
"index.js",
"inline",
"lazy",
"macro",
"on-demand",
"performance",
"ram",
"react",
"react-native",
"require"
],
"homepage": "https://github.com/microsoft/react-native-lazy-index#readme",
"bugs": "https://github.com/microsoft/react-native-lazy-index/issues",
"license": "MIT",
"files": [
"src/*.js"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/react-native-lazy-index.git"
},
"scripts": {
"clean": "git clean -dfqx --exclude=.yarn/cache",
"format": "prettier --write $(git ls-files '*.js' '*.json' '*.ts')",
"lint": "eslint --no-ignore $(git ls-files '*.js' '*.ts' ':!:test/__fixtures__/*/0.js')",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/parser": "^7.0.0",
"@babel/traverse": "^7.0.0",
"@babel/types": "^7.0.0",
"babel-plugin-codegen": "^4.0.0"
},
"peerDependencies": {
"react-native": ">=0.59"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@microsoft/eslint-plugin-sdl": "^0.1.9",
"@rnx-kit/eslint-plugin": "^0.2.0",
"@rnx-kit/jest-preset": "^0.1.0",
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.0.0",
"prettier": "^2.0.0",
"semantic-release": "^19.0.0",
"typescript": "^4.0.0"
},
"packageManager": "yarn@3.2.0",
"resolutions": {
"eslint-plugin-react": "^7.26.0"
},
"eslintConfig": {
"extends": [
"plugin:@microsoft/sdl/required",
"plugin:@rnx-kit/recommended",
"plugin:jest/recommended",
"plugin:jest/style"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
},
"settings": {
"react": {
"version": "17.0.2"
}
}
},
"jest": {
"preset": "@rnx-kit/jest-preset",
"roots": [
"test"
],
"testRegex": "/test/.*\\.test\\.ts$"
},
"release": {
"branches": [
"trunk"
],
"tagFormat": "${version}"
}
}