-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 932 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
{
"name": "js-regexp-interpreter",
"version": "1.0.3",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node ./test/test-all.js",
"lex": "node ./bin/lex.js",
"ast": "node ./bin/ast.js",
"state": "node ./bin/state.js",
"match": "node ./bin/match.js"
},
"bin": {
"js-regexp-match": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hemashushu/js-regexp-interpreter.git"
},
"author": "Hemashushu <[email protected]>",
"keywords": [
"regex",
"regexp",
"regular expression",
"lex",
"parser",
"interpreter"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/hemashushu/js-regexp-interpreter/issues"
},
"homepage": "https://github.com/hemashushu/js-regexp-interpreter#readme"
}