-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (69 loc) · 1.3 KB
/
package.json
File metadata and controls
70 lines (69 loc) · 1.3 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
67
68
69
70
{
"name": "itsaadarsh",
"version": "1.4.2",
"description": "Aadarsh CLI",
"license": "MIT",
"bin":{
"itsaadarsh":"index.js"
},
"main": "index.js",
"author": "Aadarsh",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Itsaadarsh/aadarsh-cli.git"
},
"bugs": {
"url": "https://github.com/Itsaadarsh/aadarsh-cli/issues"
},
"homepage": "https://github.com/Itsaadarsh/aadarsh-cli#readme",
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"ui.js"
],
"dependencies": {
"import-jsx": "^4.0.0",
"ink": "^3.0.8",
"ink-select-input": "^4.2.0",
"meow": "^9.0.0",
"node-banner": "^1.4.0",
"open": "^7.3.1",
"react": "^17.0.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.12.10",
"ava": "^3.15.0",
"chalk": "^4.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"ink-testing-library": "^2.1.0",
"xo": "^0.37.1"
},
"ava": {
"babel": true,
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
}
}