-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "regexsolver",
"version": "1.0.4",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"files": [
"src/",
"lib/"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"keywords": [
"Regular Expression",
"regex",
"regexp",
"set",
"intersection",
"union",
"subtraction",
"difference",
"equivalence",
"subset",
"nfa",
"dfa"
],
"author": "RegexSolver",
"license": "MIT",
"description": "RegexSolver allows you to manipulate regular expressions as sets, enabling operations such as intersection, union, and subtraction.",
"repository": {
"type": "git",
"url": "git+https://github.com/RegexSolver/regexsolver-js.git"
},
"bugs": {
"url": "https://github.com/RegexSolver/regexsolver-js/issues"
},
"homepage": "https://regexsolver.com",
"contributors": [
"Alexandre van Beurden (https://github.com/alexvbrdn)"
],
"dependencies": {
"axios": "^1.7.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"ts-jest": "^29.2.4",
"jest": "^29.7.0",
"nock": "^13.5.4",
"typescript": "^5.5.4"
}
}