-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 1.91 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
{
"name": "c0d3",
"version": "2.3.5",
"description": "Command Line Interface (CLI) for c0d3.com",
"license": "MIT",
"homepage": "https://c0d3.com",
"repository": "https://github.com/garageScript/c0d3-cli",
"engines": {
"node": ">=8"
},
"keywords": [
"c0d3",
"education"
],
"preferGlobal": true,
"bin": {
"c0d3": "./dist/src/cli.js"
},
"scripts": {
"dev": "ts-node src/cli.ts",
"autofix": "eslint . --ext .ts --fix",
"type-check": "tsc",
"build": "tsc -p . && chmod +x ./dist/src/cli.js",
"test": "jest --coverage --silent"
},
"author": "c0d3.com",
"dependencies": {
"@sentry/node": "^7.6.0",
"@sentry/tracing": "^7.6.0",
"boxen": "^4.2.0",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"enquirer": "^2.3.5",
"graphql-request": "^1.6.0",
"ora": "^4.0.4",
"simple-git": "^3.3.0",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"@types/update-notifier": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"babel-jest": "^26.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"main": "./dist/src/cli.js",
"jest": {
"collectCoverageFrom": [
"src/**/*.ts*"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"modulePathIgnorePatterns": [
"./dist",
"./src/@types"
]
},
"husky": {
"hooks": {
"pre-push": "yarn autofix && yarn test && yarn type-check"
}
}
}