forked from moroshko/react-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
{
"name": "react-scanner",
"version": "0.7.0",
"description": "Extract React components and props usage from code.",
"bin": "bin/react-scanner",
"scripts": {
"build": "node scripts/processors.js",
"lint": "eslint --max-warnings 0 \"**/*.js\"",
"prettier": "prettier --write \"**/*.{js,json,md}\"",
"test": "uvu src test",
"test:watch": "watchlist src -- npm t",
"test:coverage": "c8 --include=src/**/*.js -o coverage --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 npm t",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run prettier && npm run lint && npm run test:coverage && git add src/processors/processors.json"
}
},
"dependencies": {
"@typescript-eslint/typescript-estree": "3.10.1",
"astray": "1.1.1",
"dlv": "1.1.3",
"dset": "2.1.0",
"fdir": "4.1.0",
"is-plain-object": "4.1.1",
"picomatch": "2.2.2",
"sade": "1.7.4",
"typescript": "4.2.3"
},
"devDependencies": {
"c8": "7.7.0",
"eslint": "7.23.0",
"eslint-plugin-import": "2.22.1",
"execa": "4.1.0",
"husky": "4.3.8",
"prettier": "2.2.1",
"uvu": "0.5.1",
"watchlist": "0.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/moroshko/react-scanner"
},
"files": [
"bin",
"src/**/!(*.test).@(js|json)"
],
"engines": {
"node": ">=10.12.0"
},
"keywords": [
"react",
"scanner",
"component",
"components",
"jsx",
"usage",
"info",
"stats",
"statistics"
],
"author": {
"name": "Misha Moroshko",
"email": "michael.moroshko@gmail.com"
},
"license": "MIT"
}