-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"name": "@rghat/do-it-cli",
"version": "1.0.2",
"description": "Command-line interface for listing and running npm scripts.",
"author": "Renee Ghattas <renee.ghattas@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/rghattas/doit-cli/blob/master/README.md",
"engines": {
"node": ">=8"
},
"bin": {
"doit": "build/index.js"
},
"main": "build/index.js",
"scripts": {
"start": "node ./src/index.js",
"build": "babel src --out-dir=build",
"lint": "eslint src/**"
},
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/register": "^7.10.1",
"@types/react": "^16.9.35",
"child_process": "^1.0.2",
"ink": "^2.7.1",
"ink-box": "^1.0.0",
"ink-select-input": "^3.1.2",
"prop-types": "^15.7.2",
"react": "^16.13.1"
},
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rghattas/do-it-cli.git"
},
"keywords": [
"React",
"cli",
"ink",
"do",
"it",
"npm",
"scripts"
],
"bugs": {
"url": "https://github.com/rghattas/do-it-cli/issues"
}
}