forked from brody2consult/create-react-native-module
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.84 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@otobank/create-react-native-module",
"version": "0.19.1-dev",
"description": "Tool to create a React Native library module or view module with a single command",
"bin": "bin/cli.js",
"main": "lib/lib.js",
"engines": {
"node": ">= 10.20"
},
"scripts": {
"jest": "cross-env CI=1 jest",
"lint": "eslint .",
"stryker": "stryker run",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otobank/create-react-native-module.git"
},
"keywords": [
"react-native",
"react",
"library",
"create",
"module",
"native",
"view",
"component",
"ios",
"android",
"windows"
],
"files": [
"bin",
"lib",
"templates",
"README.md"
],
"author": "OTOBANK Inc. <dev-se@otobank.co.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/otobank/create-react-native-module/issues"
},
"homepage": "https://github.com/otobank/create-react-native-module#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^6.0.0",
"console": "^0.7.2",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"jsonfile": "^6.0.1",
"log-symbols": "^4.0.0",
"node-emoji": "^1.10.0",
"param-case": "^3.0.3",
"pascal-case": "^3.1.1",
"please-upgrade-node": "^3.2.0",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/javascript-mutator": "^3.3.1",
"@stryker-mutator/jest-runner": "^3.3.1",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.0",
"recursive-readdir": "^2.2.2"
}
}