-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.05 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "techstack-cli",
"version": "1.0.0",
"description": "CLI app for detecting technologies behind a company",
"main": "src/index.js",
"repository": "[email protected]:existentialcoder/TechstackCLI.git",
"author": "existentialcoder <[email protected]>",
"license": "MIT",
"private": false,
"keywords": ["techstack", "technologies stack", "Technologies Stack", "Companies Tehnologies", "Wappalyzer", "wappalyzer-cli", "Wappalyzer Command Line", "wappalyzer cli"],
"bin": {
"techstack": "./src/"
},
"engine": {
"node": "10"
},
"scripts": {
"unit": "nyc jest --detectOpenHandles",
"test": "yarn unit",
"lint": "eslint -f table .",
"dev": "node src"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"extends": "airbnb-base",
"overrides": [
{
"files": [
"*.js"
],
"rules": {}
},
{
"files": [
"*.spec.js"
],
"rules": {
"max-lines": [
"error",
1500
],
"max-lines-per-function": [
"error",
1500
],
"no-unused-expressions": "off",
"no-empty-function": "off",
"init-declarations": "off",
"no-magic-numbers": "off",
"func-names": "off",
"semi": "off",
"global-require": "off"
}
}
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"reporter": [
"html",
"text-summary",
"text"
]
},
"eslintIgnore": [
"node_modules/"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.0.0",
"console-table-printer": "^2.2.6",
"wappalyzer": "^6.2.1"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.2.2",
"jest-mock-process": "^1.4.0",
"nyc": "^15.1.0"
}
}