-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
30 lines (30 loc) · 843 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
{
"name": "regex-colorizer",
"version": "1.0.1",
"description": "Highlight regex syntax",
"homepage": "https://slevithan.github.io/regex-colorizer/demo/",
"author": "Steven Levithan",
"license": "MIT",
"type": "module",
"exports": "./src/index.js",
"browser": "./dist/regex-colorizer.min.js",
"scripts": {
"prebuild": "rimraf --glob dist/*",
"build": "esbuild src/index.js --bundle --minify --outfile=dist/regex-colorizer.min.js --global-name=RegexColorizer",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slevithan/regex-colorizer.git"
},
"keywords": [
"regex",
"regexp",
"syntax-highlighting"
],
"devDependencies": {
"esbuild": "^0.23.0",
"rimraf": "^6.0.1"
}
}