-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "clvr",
"version": "0.0.0",
"description": "🍀 Clover: The Command-Line Validator",
"main": "./lib/index.js",
"bin": {
"clvr": "./lib/cli.js"
},
"files": [
"lib/"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"build": "tsc",
"test": "jest --no-cache",
"test:coverage": "npm run test -- --coverage",
"prestart": "npm run build",
"start": "clvr"
},
"keywords": [
"command-line",
"cli",
"validation",
"test"
],
"author": "Tanner Barlow",
"license": "ISC",
"dependencies": {
"chalk": "^4.0.0",
"clear": "^0.1.0",
"commander": "^5.1.0",
"cross-spawn": "^7.0.2",
"figlet": "^1.4.0",
"glob": "^7.1.6",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/cross-spawn": "^6.0.1",
"@types/figlet": "^1.2.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.2.1",
"@types/mock-fs": "^4.10.0",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "^25.3.0",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"jest-cli": "^25.3.0",
"mock-fs": "^4.12.0",
"ts-jest": "^25.3.1"
},
"repository": {
"url": "https://github.com/tbarlow12/clvr"
}
}