forked from devongovett/regexgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 903 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
{
"name": "regexgen",
"version": "1.3.0",
"description": "Generate regular expressions that match a set of strings",
"main": "index.js",
"bin": {
"regexgen": "bin/cli.js"
},
"dependencies": {
"jsesc": "^2.3.0",
"regenerate": "^1.3.2"
},
"devDependencies": {
"mocha": "^3.2.0"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devongovett/regexgen.git"
},
"keywords": [
"regex",
"trie",
"regular",
"expression"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/regexgen/issues"
},
"homepage": "https://github.com/devongovett/regexgen#readme",
"runkitExample": "const regexgen = require('regexgen');\n\nregexgen(['foobar', 'foobaz', 'foozap', 'fooza']);"
}