-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.17 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
{
"name": "readable-regexp",
"version": "1.5.1",
"author": "Henry Lin",
"license": "MIT",
"description": "Regular Expressions - quick and concise, readable and composable.",
"keywords": [
"regex",
"regexp",
"readable",
"verbal",
"regular",
"expression",
"typescript",
"typed",
"composable",
"concise"
],
"homepage": "https://github.com/hlysine/readable-regexp#readme",
"repository": "github:hlysine/readable-regexp",
"bugs": {
"url": "https://github.com/hlysine/readable-regexp/issues"
},
"main": "./dist/readable-regexp.umd.js",
"module": "./dist/readable-regexp.mjs",
"typings": "./dist/readable-regexp.d.ts",
"exports": {
".": {
"require": "./dist/readable-regexp.umd.js",
"import": "./dist/readable-regexp.mjs",
"types": "./dist/readable-regexp.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin rollup-plugin-esbuild",
"watch": "rollup --watch --config rollup.config.ts --configPlugin rollup-plugin-esbuild",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\"",
"test": "jest",
"make:docs": "typedoc ./src/index.ts",
"predeploy": "npm run make:docs",
"deploy": "gh-pages -d docs"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"gh-pages": "^6.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"rollup": "^3.28.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
}
}