-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (83 loc) · 1.86 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
78
79
80
81
82
83
84
85
{
"name": "yunle-cli",
"version": "1.0.15",
"description": "A simple CLI for scaffolding yunle projects",
"main": "bin/yunle",
"scripts": {
"test": "mocha"
},
"keywords": [],
"yunleTemplates": [
{
"name": "umi",
"info": "react.js网站开发脚手架"
},
{
"name": "react-native",
"info": "ReactNative快速的开发iOS和Android应用"
},
{
"name": "taro",
"info": "taro 小程序开发"
},
{
"name": "electron",
"info": "Electron快速的构建桌面应用"
},
{
"name": "gatsby",
"info": "原生html网站开发脚手架"
},
{
"name": "next",
"info": "前端生产环境node中间渲染层"
},
{
"name": "nest",
"info": "服务端开发"
},
{
"name": "component",
"info": "react组件开发脚手架"
},
{
"name": "webpack",
"info": "私有库开发脚手架"
}
],
"author": "hexiao-o",
"license": "MIT",
"bin": {
"yunle": "./bin/yunle",
"yunle-init": "./bin/yunle-init",
"yunle-run": "./bin/yunle-run"
},
"repository": "git+https://github.com/hexiao-o/yunle-cli.git",
"bugs": {
"url": "https://github.com/hexiao-o/yunle-cli/issues"
},
"homepage": "https://github.com/hexiao-o/yunle-cli#readme",
"dependencies": {
"commander": "^2.16.0",
"download-git-repo": "^1.0.2",
"inquirer": "^6.0.0",
"mkdirp": "^0.5.1",
"ora": "^2.1.0",
"readline": "^1.3.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0"
},
"engines": {
"node": ">=6.0.0"
}
}