This repository was archived by the owner on Oct 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.6 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.6 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "breathecode-cli",
"description": "Command Line Interface for improving your coding skills, a part of the BreatheCo.de platform",
"version": "1.2.73",
"author": "Alejandro Sanchez",
"bin": {
"breathecode": "./bin/run",
"bc": "./bin/run",
"learnpack": "./bin/run"
},
"bugs": "https://github.com/breatheco-de/breathecode-cli/issues",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^2.2.1",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-update": "^1.3.9",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"body-parser": "^1.18.3",
"chokidar": "^3.4.0",
"colors": "^1.2.1",
"compile-run": "^2.3.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^0.28.7",
"debounce": "^1.2.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^1.1.5",
"front-matter": "^3.0.2",
"globby": "^8.0.1",
"html-loader": "^0.5.5",
"html-validator": "^4.1.1",
"html-webpack-plugin": "^3.2.0",
"indent-string": "^4.0.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jsdom": "^11.12.0",
"jsx-to-string": "^1.4.0",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"node-persist": "^3.0.5",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.3",
"prompt-sync": "^4.1.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-iframe": "^1.2.0",
"react-loadable": "^5.5.0",
"react-test-renderer": "^16.5.2",
"readline-sync": "^1.4.9",
"regex": "^0.1.1",
"rewire": "^4.0.1",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.2",
"socket.io": "^2.1.1",
"source-map-support": "^0.5.16",
"style-loader": "^0.19.0",
"targz": "^1.0.1",
"user": "0.0.0",
"validator": "^11.1.0",
"webpack": "^4.16.5",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.2.20",
"@oclif/test": "^1.0.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-oclif": "^1.3.8",
"leasot": "^5.1.0",
"mocha": "^5.0.4",
"yarn": "^1.6.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/src"
],
"homepage": "https://github.com/breatheco-de/breathecode-cli",
"keywords": [
"oclif"
],
"license": "GPL-3.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "breathecode",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available"
]
},
"repository": "breatheco-de/breathecode-cli",
"scripts": {
"clean": "rm -f .oclif.manifest.json",
"lint": "eslint .",
"postpublish": "yarn run clean",
"posttest": "yarn run lint",
"prepublishOnly": "oclif-dev manifest && oclif-dev readme",
"preversion": "yarn run clean",
"test": "mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}