-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
77 lines (77 loc) · 1.92 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
{
"name": "create-react-native-module",
"version": "0.20.3-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": ">= 12"
},
"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/brodybits/create-react-native-module.git"
},
"keywords": [
"react-native",
"react",
"library",
"create",
"module",
"native",
"view",
"component",
"ios",
"android",
"windows"
],
"files": [
"LICENSE",
"CHANGELOG.md",
"bin",
"lib",
"templates",
"!.eslint*.*",
"README.md"
],
"author": "Christopher J. Brody <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brodybits/create-react-native-module/issues"
},
"homepage": "https://github.com/brodybits/create-react-native-module#readme",
"dependencies": {
"commander": "^6.2.1",
"console": "^0.7.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"jsonfile": "^6.1.0",
"log-symbols": "^4.1.0",
"node-emoji": "^1.10.0",
"outdent": "^0.8.0",
"param-case": "^3.0.4",
"pascal-case": "^3.1.2",
"please-upgrade-node": "^3.2.0",
"react-native-init-func": "^0.0.6",
"update-notifier": "^5.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.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"recursive-readdir": "^2.2.2"
}
}