-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "delete-react-zombies",
"version": "2.0.1",
"description": "Search and delete unimported components in your react files",
"author": "Christian Varisco <vari.chri1993@gmail.com>",
"bin": {
"delete-react-zombies": "./dist/index.js"
},
"engines": {
"node": ">=6"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src test",
"build": "./scripts/build.sh",
"build:ts": "tsc -w",
"watch": "npm-watch",
"try": "node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"watch": {
"lint": "src/**/*.js",
"build": "src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CVarisco/delete-react-zombies.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CVarisco/delete-react-zombies/issues"
},
"homepage": "https://github.com/CVarisco/delete-react-zombies#readme",
"devDependencies": {
"@types/inquirer": "0.0.41",
"@types/node": "12.0.4",
"@types/ora": "3.2.0",
"@types/yargs": "11.0.0",
"babel-cli": "6.26.0",
"babel-eslint": "7.1.1",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"jest": "24.8.0",
"mock-fs": "3.12.1",
"npm-watch": "0.1.7"
},
"dependencies": {
"inquirer": "6.3.1",
"ora": "3.4.0",
"react-docgen": "4.1.1",
"yargs": "13.2.0"
}
}