-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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": "@beatjs/react-native-create-module",
"version": "1.1.0",
"description": "Tool to create a React Native module with a single command",
"bin": "dist/cli.js",
"main": "dist/lib.js",
"scripts": {
"build": "tsc -p . -d --resolveJsonModule --esModuleInterop",
"lint": "eslint",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beatjs/react-native-create-module.git"
},
"keywords": [
"react-native",
"react",
"library",
"create",
"module",
"native",
"ios",
"android"
],
"files": [
"dist"
],
"author": "beatjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/beatjs/react-native-create-module/issues"
},
"homepage": "https://github.com/beatjs/react-native-create-module#readme",
"dependencies": {
"commander": "^7.1.0",
"dot-case": "^3.0.4",
"jsonfile": "^6.1.0",
"mkdirp": "^1.0.4",
"no-case": "^3.0.4",
"node-emoji": "^1.10.0",
"param-case": "^3.0.4",
"pascal-case": "^3.1.2",
"require": "^0.4.4",
"update-notifier": "^5.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jsonfile": "^6.0.0",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.31",
"@types/node-emoji": "^1.8.1",
"@types/param-case": "^1.1.2",
"@types/update-notifier": "^5.0.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "^2.22.1",
"shelljs": "^0.8.4",
"typescript": "^4.2.2"
},
"rnpm": {
"plugin": "./command.ts"
}
}