forked from caz-templates/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 784 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@caz-templates/template",
"version": "0.1.0",
"private": true,
"description": "A template for creating caz templates.",
"keywords": [
"template",
"caz-templates",
"caz",
"zce"
],
"repository": "caz-templates/template",
"license": "MIT",
"author": "zce <[email protected]> (https://zce.me)",
"scripts": {
"test": "standard --fix && jest"
},
"jest": {
"testTimeout": 20000,
"modulePathIgnorePatterns": [
"<rootDir>/template"
]
},
"renovate": {
"extends": [
"zce"
],
"ignorePaths": [
"template"
]
},
"standard": {
"env": [
"jest"
],
"ignore": [
"template"
]
},
"devDependencies": {
"caz": "1.1.0",
"jest": "29.2.2",
"standard": "17.0.0"
}
}