-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "rncn-cli",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"prepublish": "tsc"
},
"files": [
"lib"
],
"bin": {
"rncn": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactnativecn/rncn-cli.git"
},
"author": "sunnylqm",
"license": "ISC",
"bugs": {
"url": "https://github.com/reactnativecn/rncn-cli/issues"
},
"homepage": "https://github.com/reactnativecn/rncn-cli#readme",
"dependencies": {
"@octokit/rest": "^17.9.2",
"@react-native-community/cli": "^4.9.0",
"commander": "^5.1.0",
"compare-versions": "^3.6.0",
"node-downloader-helper": "^1.0.13",
"progress": "^2.0.3"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "2",
"eslint": "7",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}