-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 865 Bytes
/
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
{
"name": "recheck-cli",
"version": "0.2.2",
"description": "ReDos CLI Checker",
"main": "cli.js",
"bin": "cli.js",
"scripts": {
"start": "node cli.js",
"build": "pkg ."
},
"repository": {
"type": "git",
"url": "https://github.com/ndom91/recheck-cli.git"
},
"keywords": [
"redos",
"regex",
"checker"
],
"pkg": {
"targets": [
"node14-linux-x64",
"node14-win-x64",
"node14-macos-x64"
],
"outputPath": "dist"
},
"author": "Nico Domino <yo@ndo.dev>",
"license": "MIT",
"dependencies": {
"recheck": "^4.1.1",
"glob": "^7.1.6",
"meow": "^9.0.0"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"pkg": "^5.1.0",
"prettier": "^2.2.1"
},
"prettier": {
"semi": false
}
}