forked from madlabsinc/teachcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.74 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
{
"name": "teach-code",
"version": "1.2.6",
"description": "A tool to develop and improve a student’s programming skills by introducing the earliest lessons of coding.",
"main": "./bin/index.js",
"files": [
"bin",
"src"
],
"bin": {
"teachcode": "./bin/index.js"
},
"scripts": {
"lint": "eslint src bin __e2e__",
"lint:fix": "eslint --fix src bin __e2e__",
"pretest": "npm run lint",
"test": "ava --serial",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"ava": {
"snapshotDir": "__e2e__/__snapshots__"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"src/**/*.js": "npm run lint"
}
},
"keywords": [
"node.js",
"commander.js",
"inquirer.js",
"shell.js",
"cli",
"python3"
],
"author": "James George <jamesgeorge998001@gmail.com>",
"bugs": {
"url": "https://github.com/jamesgeorge007/teach-code/issues"
},
"homepage": "https://github.com/jamesgeorge007/teach-code#readme",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.1",
"cli-table3": "^0.5.1",
"commander": "^2.18.0",
"didyoumean": "^1.2.1",
"execa": "^1.0.0",
"inquirer": "^6.2.0",
"node-banner": "^1.3.2",
"python-shell": "^1.0.7",
"open": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ava": "^2.4.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.7.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"vuepress": "^1.0.0"
}
}