-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.6 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
{
"name": "base-app",
"description": "Starting point for creating a base application, with a couple of light plugins for running tasks and writing to the file system, and a functional CLI.",
"version": "1.0.0",
"homepage": "https://github.com/node-base/base-app",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "node-base/base-app",
"bugs": {
"url": "https://github.com/node-base/base-app/issues"
},
"license": "MIT",
"files": [
"bin",
"index.js",
"lib"
],
"main": "index.js",
"bin": {
"base": "bin/cli.js"
},
"engines": {
"node": ">8.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"base": "^2.0.1",
"base-fs": "^0.3.5",
"base-generators": "^0.4.6",
"find-pkg": "^2.0.0",
"global-modules": "^1.0.0",
"log-utils": "^0.2.1",
"matched": "^2.0.1",
"minimist": "^1.2.0",
"resolve-file": "^0.3.0"
},
"devDependencies": {
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3"
},
"keywords": [
"api",
"app",
"application",
"base",
"base-plugin",
"baseplugin",
"building-blocks",
"create",
"framework",
"plugin",
"plugins",
"tool",
"toolkit",
"tools"
],
"verb": {
"run": true,
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"base",
"base-fs",
"base-pipeline"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"base",
"base-task",
"composer"
]
}
}