-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.32 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sparta",
"description": "Sparta CLI",
"version": "1.2.0",
"author": "Fewlines",
"bin": {
"sparta": "./bin/run"
},
"bugs": "https://github.com/fewlinesco/sparta-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^3",
"fs-extra": "^9.0.1",
"marked": "^1.1.1",
"marked-terminal": "^4.1.0",
"node-emoji": "^1.10.0",
"node-fetch": "^2.6.0",
"simple-git": "^2.20.1",
"tslib": "^1"
},
"devDependencies": {
"@fewlines/eslint-config": "^3.0.0",
"@types/fs-extra": "9.0.1",
"@types/jest": "^26.0.10",
"@types/marked": "1.1.0",
"@types/marked-terminal": "3.1.1",
"@types/node": "^14",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"globby": "^10",
"jest": "^26.1.0",
"nyc": "^14",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"eslintConfig": {
"env": {
"jest": true
},
"extends": [
"oclif",
"oclif-typescript",
"@fewlines/eslint-config/node",
"@fewlines/eslint-config/typescript"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"unicorn/prefer-module": 0
}
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/fewlinesco/sparta-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "sparta",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "fewlinesco/sparta-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json tsconfig.tsbuildinfo",
"posttest": "eslint . --ext .ts",
"prepack": "rm -rf dist && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}