-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
90 lines (90 loc) · 2.26 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
86
87
88
89
90
{
"name": "mdb-cli",
"version": "4.3.3",
"description": "Command Line Interface for MDB",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mdbootstrap/mdb-cli.git"
},
"scripts": {
"test": "NODE_ENV=\"test\" mocha -r ts-node/register",
"test:coverage": "nyc --reporter=text -e .ts -x \"**/*.test.ts\" npm run test",
"compile": "./node_modules/pkg/lib-es5/bin.js -c package.json src/dist/index.js --targets node6",
"lint": "./node_modules/.bin/eslint ./src",
"lintfix": "./node_modules/.bin/eslint ./src --fix",
"jsdoc": "./node_modules/.bin/jsdoc ./src/",
"build": "tsc",
"postbuild": "node src/postbuild.js"
},
"bin": {
"mdb": "src/dist/index.js"
},
"author": "MDBootstrap.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/archiver": "^5.1.0",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/chai": "^4.2.17",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/progress": "^2.0.3",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/unzip-stream": "^0.3.4",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"jsdoc": "^3.6.6",
"mocha": "^6.1.1",
"nyc": "^13.3.0",
"pkg": "^4.3.5",
"sinon": "^7.3.1",
"sinon-chai": "^3.5.0",
"ts-node": "^9.1.1",
"type-fest": "^1.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"archiver": "^3.0.0",
"atob": "^2.1.2",
"babel-polyfill": "^6.26.0",
"btoa": "^1.2.1",
"clipboardy": "^2.1.0",
"console.table": "^0.10.0",
"dotenv": "^8.0.0",
"fs-extra": "^8.0.1",
"inquirer": "^6.2.1",
"open": "^7.3.0",
"ora": "^3.4.0",
"progress": "^2.0.3",
"socket.io-client": "^4.1.3",
"unzip-stream": "^0.3.1"
},
"pkg": {
"assets": [
"dist/commands/*.js",
"dist/config/*.js",
"dist/helpers/*.js",
"dist/models/*.js",
"dist/utils/*.js"
]
},
"nyc": {
"exclude": [
"test/",
"config/"
]
},
"mocha": {
"spec": "./src/test/**/*.ts",
"recursive": true,
"exit": true
}
}