-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
66 lines (66 loc) · 1.59 KB
/
package.json
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": "react-scanner",
"version": "1.2.0",
"description": "Extract React components and props usage from code.",
"bin": "bin/react-scanner",
"main": "src/scanner.js",
"scripts": {
"prepare": "husky install",
"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"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "8.8.0",
"astray": "1.1.1",
"dlv": "1.1.3",
"dset": "3.1.4",
"fdir": "5.2.0",
"is-plain-object": "5.0.0",
"picomatch": "2.3.1",
"sade": "1.8.1",
"typescript": "5.6.2"
},
"devDependencies": {
"c8": "7.12.0",
"escodegen-wallaby": "1.6.44",
"eslint": "8.23.1",
"eslint-plugin-import": "2.31.0",
"execa": "5.0.0",
"husky": "7.0.4",
"prettier": "2.7.1",
"uvu": "0.5.6",
"watchlist": "0.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/moroshko/react-scanner"
},
"files": [
"bin",
"src/**/!(*.test).@(js|json)"
],
"engines": {
"node": ">=14.x"
},
"keywords": [
"react",
"scanner",
"component",
"components",
"jsx",
"usage",
"info",
"stats",
"statistics"
],
"author": {
"name": "Misha Moroshko",
"email": "michael.moroshko@gmail.com"
},
"license": "MIT"
}