-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 856 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 856 Bytes
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
{
"name": "wappalyzer-action",
"version": "1.0.0",
"description": "Run Wappalyzer scan",
"main": "./src/index.js",
"types": "index.d.ts",
"private": true,
"scripts": {
"lint": "eslint .",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socialgouv/wappalyzer-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"DashLord",
"wappalyzer"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/socialgouv/wappalyzer-action/issues"
},
"homepage": "https://github.com/socialgouv/wappalyzer-action#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"wappalyzer": "^6.10.26"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^28.0.0"
}
}