-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
75 lines (75 loc) · 1.73 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
{
"name": "teach-code",
"version": "1.3.2",
"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": {
"files": [
"__e2e__/**/*.test.js"
]
},
"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 <[email protected]>",
"bugs": {
"url": "https://github.com/madlabsinc/teach-code/issues"
},
"homepage": "https://github.com/madlabsinc/teach-code#readme",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.4.1",
"commander": "^6.2.0",
"execa": "^4.1.0",
"inquirer": "^6.2.0",
"leven": "^3.1.0",
"node-banner": "^1.3.2",
"open": "^7.0.0",
"ora": "^4.0.3",
"python-shell": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ava": "^3.13.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"
}
}