-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"$schema": "https://json.schemastore.org/package",
"author": "Romain Racamier-Lafon <romain.racamier@gmail.com>",
"bugs": "https://github.com/Shuunen/regex-converter/issues",
"description": "Web app to apply successive regex text substitutions",
"devDependencies": {
"eslint": "*",
"eslint-plugin-shuunen": "0.4",
"repo-check": "1.40",
"servor": "4"
},
"files": [
"public"
],
"homepage": "https://github.com/Shuunen/regex-converter",
"keywords": [
"webapp",
"successive",
"regex",
"substitution"
],
"license": "GPL-3.0",
"name": "@shuunen/regex-converter",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Shuunen/regex-converter.git"
},
"scripts": {
"build": "echo nothing to build && echo build success",
"check": "pnpm install && echo install success && pnpm lint && repo-check && echo repo-check success && echo check success",
"dev": "servor public --reload",
"lint": "eslint --cache --max-warnings 0 public && echo lint success",
"postversion": "git push && git push --tags",
"preversion": "pnpm lint",
"start": "pnpm dev",
"test": "echo nothing to test && echo test success"
},
"type": "module",
"version": "0.1.1"
}