-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.26 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "make-react-native-package",
"version": "0.62.18",
"description": "CLI tool for bootstrapping react-native packages with Kotlin & Swift & Typescript",
"main": "index.js",
"bin": "index.js",
"scripts": {
"lint": "npm run ci:lint -- --fix",
"ci:lint": "standard './index.js'",
"preversion": "npm run lint && git add -u && git commit -am lint || :",
"postversion": "git push && git push --tags",
"test:scaffold:default": "./index.js -p mock-package -g mock-user -w -c FakeComponent component-doodle -m falseModule dummy_module",
"test:scaffold:swift-ui": "./index.js -p mock-package -g mock-user -w -t ios:swift-ui",
"test:scaffold:jetpack-compose": "./index.js -p mock-package -g mock-user -w -t android:jetpack-compose",
"test:scaffold:component-kit": "./index.js -p mock-package -g mock-user -w -c comp -m mod -t ios:component-kit",
"test:scaffold:litho": "./index.js -p mock-package -g mock-user -w -t android:litho",
"test:cleanup": "rm -rf mock-package",
"test:ts": "cd mock-package && npm run ci:build && npm run ci:lint:ts",
"test:kotlin": "cd mock-package && npm run ci:lint:kotlin && npm run ci:compile:android",
"test:swift": "cd mock-package && npm run ci:lint:swift && npm run ci:compile:ios",
"test:objc": "cd mock-package && npm run ci:compile:ios"
},
"keywords": [
"react-native",
"scaffold",
"swift",
"kotlin",
"swift-ui",
"jetpack-compose",
"component-kit",
"litho"
],
"author": "iyegoroff <iegoroff@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyegoroff/make-react-native-package/issues"
},
"homepage": "https://github.com/iyegoroff/make-react-native-package#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iyegoroff/make-react-native-package.git"
},
"dependencies": {
"chalk": "^4.0.0",
"change-case": "^4.1.1",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"handlebars": "^4.7.6",
"lower-case": "^2.0.1",
"prompt-confirm": "^2.0.4",
"randomcolor": "^0.5.4",
"recursive-copy": "^2.0.10",
"rimraf": "^3.0.2",
"through2": "^3.0.1"
},
"devDependencies": {
"standard": "^14.3.3"
},
"standard": {
"ignore": [
"template/*"
]
}
}