-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@iter-tools/regex",
"version": "0.3.2",
"description": "A fully streaming regular expression engine",
"engines": {
"node": ">=12.0.0"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./internal/debug": "./lib/internal/debug.js",
"./internal/engine": "./lib/internal/engine.js",
"./async": "./lib/async/index.js",
"./async/chunked": "./lib/async/chunked.js"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"sideEffects": false,
"scripts": {
"build": "macrome build",
"test": "jest",
"verify": "npm run lint && jest --coverage && codecov",
"format": "prettier --write '**/*.{js,md}'",
"lint": "eslint --ext .js,.ts ."
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.md": [
"prettier -c"
]
},
"dependencies": {
"@iter-tools/imm-stack": "^1.1.0",
"functional-red-black-tree": "^1.0.1",
"iter-tools-es": "^7.0.2",
"regexpp": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"@macrome/generator-typescript": "github:macrome-js/generator-typescript#31a59aea6934522799c2446ed278b4f01169d1cd",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-jest": "^26.6.3",
"codecov": "^3.6.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"macrome": "conartist6/macrome#226df467d85a950d47f543a62f62706b105596ea",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"keywords": [
"regex",
"regular",
"iterator",
"iterable",
"match",
"test",
"engine",
"capture",
"streaming"
],
"repository": "[email protected]:iter-tools/regex.git",
"author": "Conrad Buck <[email protected]>",
"license": "MIT"
}