forked from mdbootstrap/mdb-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.18 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "mdb-cli",
"version": "1.1.9",
"description": "Command Line Interface for MDB",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mdbootstrap/mdb-cli.git"
},
"scripts": {
"test": "mocha --exit --recursive",
"test:coverage": "nyc --reporter=text mocha --exit --recursive",
"compile": "./node_modules/pkg/lib-es5/bin.js -c package.json dist/index.js --targets node6"
},
"bin": {
"mdb": "dist/index.js"
},
"author": "MDBootstrap.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"chai": "^4.2.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"mocha": "^6.1.1",
"nyc": "^13.3.0",
"pkg": "^4.3.5",
"sinon": "^7.3.1"
},
"dependencies": {
"archiver": "^3.0.0",
"console.table": "^0.10.0",
"fs-extra": "^8.0.1",
"inquirer": "^6.2.1",
"ora": "^3.4.0",
"progress": "^2.0.3",
"unzipper": "^0.9.7"
},
"pkg": {
"assets": [
"dist/commands/*.js",
"dist/config/*.js",
"dist/helpers/*.js",
"dist/utils/*.js"
]
},
"nyc": {
"exclude": [
"test/",
"config/"
]
}
}