-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 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
{
"name": "garson",
"version": "2.0.1",
"main": "dist/index.js",
"bin": "dist/bin/index.js",
"files": [
"dist"
],
"description": "Interactive config-based command-line tool",
"homepage": "https://github.com/goliney/garson",
"bugs": "https://github.com/goliney/garson/issues",
"keywords": [
"interactive",
"config-based",
"command-line",
"tool",
"garson"
],
"repository": {
"type": "git",
"url": "https://github.com/goliney/garson.git"
},
"scripts": {
"garson": "node ./dist/bin",
"build": "babel src --out-dir dist --extensions .js,.jsx,.ts,.tsx --ignore 'src/**/__mocks__/**/*'",
"typecheck": "tsc",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"test": "jest"
},
"author": "Sergey Goliney sergey@goliney.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.3.3",
"@types/glob": "^7.1.3",
"@types/node": "^14.0.27",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"ink-testing-library": "^2.1.0",
"jest": "^25.1.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"commander": "^5.0.0",
"core-js": "^3.20.2",
"figures": "^3.2.0",
"glob": "^7.2.0",
"ink": "^3.2.0",
"ink-text-input": "^4.0.2",
"react": ">=16.8.0",
"vscode-fuzzy-scorer": "^0.0.4"
}
}