This repository has been archived by the owner on Aug 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.93 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
90
{
"name": "strex-lang",
"version": "0.1.0",
"description": "The *StrexLang* (\"Strange expression language\") is used to train regular expressions in JavaScript. Also a bit of parser design in a hopefully not so boring way.",
"bin": "src/cli/index.js",
"private": true,
"scripts": {
"start": "node src/cli",
"test": "node src/cli --test",
"lint": "eslint '**/*.js'",
"release": "standard-version",
"format": "prettier --write .",
"format:check": "prettier --list-different ."
},
"keywords": [
"strexlang",
"language",
"regex",
"test",
"training"
],
"author": "Martin Helmut Fieber <info@martin-fieber.se> (https://martin-fieber.se)",
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"eslintConfig": {
"extends": [
"google",
"prettier"
],
"plugins": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"prettier/prettier": "error"
}
},
"renovate": {
"extends": [
"config:base"
],
"dependencyDashboard": false,
"baseBranches": [
"main"
],
"supportPolicy": [
"lts_latest"
],
"dependencies": {
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"pin": {
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"semanticPrefix": "chore:",
"semanticCommitScope": "",
"packageRules": [
{
"updateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true
}
]
},
"devDependencies": {
"commander": "9.4.0",
"eslint": "8.23.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.0.1",
"pegjs": "0.10.0",
"prettier": "2.7.1",
"standard-version": "9.5.0"
},
"dependencies": {
"decimal.js": "10.4.0"
}
}