-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.38 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
83
84
85
86
87
88
89
{
"name": "regulex",
"version": "1.0.0",
"description": "Regular Expression Excited!",
"author": {
"name": "yumenotame",
"email": "greatm1257@gmail.com"
},
"main": "./build/src/index",
"files": [
"build",
"src",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/EDMPhoenix/Regulex.git"
},
"keywords": [
"Regular Expression",
"RegExp",
"Regex",
"XRegExp",
"PCRE",
"parser",
"Regulex"
],
"dependencies": {
"core-js": "^3.34.0"
},
"engines": {
"node": ">=12.1"
},
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.11",
"@types/html-webpack-plugin": "^3.2.0",
"@types/lodash": "^4.14.202",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.3",
"@types/optimize-css-assets-webpack-plugin": "^1.3.4",
"@types/webpack": "^4.4.32",
"@types/webpack-dev-server": "^3.1.6",
"@webpack-cli/serve": "^0.1.8",
"acorn": "^6.1.0",
"benchmark": "^2.1.4",
"chai": "^4.3.10",
"css-loader": "^6.8.1",
"fast-check": "^1.16.0",
"html-inline-css-webpack-plugin": "^1.6.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^8.0.3",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^3.1.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typed-css-modules": "^0.8.1",
"typescript": "^5.3.2",
"unicode-12.0.0": "^0.8.0",
"url-loader": "^4.1.1",
"utility-types": "^3.10.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2",
"webpack-shell-plugin": "^0.5.0"
},
"scripts": {
"cssd": "tcm ./src/web/",
"build": "npm run cssd && tsc && npm run format",
"test": "mocha --inline-diffs --require ts-node/register --recursive test/**/*Spec.ts",
"testit": "mocha --inline-diffs --require ts-node/register",
"format": "prettier --write \"{src, test}/**/*.{js,ts,css}\" \"./*.{js,ts,css}\"",
"buildUnicode": "ts-node src/tools/buildUnicode.ts && npm run format && npm run build",
"prepare": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}