This repository was archived by the owner on Jan 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.13 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.13 KB
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
91
92
93
94
95
96
97
{
"name": "typescript-patternplate-resolver",
"version": "0.1.1",
"description": "TypeScript server plugin to inject pattern resolution algorithm in the language service",
"main": "dist/src/index.js",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"linter": "tslint --project ./tsconfig.json",
"start": "npm test",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --inlineSourceMap",
"pretest": "npm run build",
"test": "nyc ava",
"coverage": "nyc report --reporter=lcov && codecov",
"prerelease": "npm test",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"author": {
"name": "Markus Wolf",
"email": "knister.peter@shadowrun-clan.de"
},
"repository": {
"type": "git",
"url": "KnisterPeter/typescript-patternplate-resolver"
},
"license": "MIT",
"devDependencies": {
"@knisterpeter/standard-tslint": "1.7.2",
"@types/node": "14.14.14",
"ava": "3.14.0",
"codecov": "3.8.1",
"conventional-changelog-cli": "2.1.1",
"cz-conventional-changelog": "3.3.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"standard-version": "9.0.0",
"tslint": "6.1.3"
},
"dependencies": {
"find-root": "1.1.0",
"typescript": "4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"files": [
"dist/tests/**/*.test.js"
],
"require": [
"source-map-support/register"
]
},
"nyc": {
"all": true,
"cache": true,
"exclude": [
"wallaby.conf.js",
"node_modules",
"coverage",
"dist/tests",
"tests"
]
},
"renovate": {
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"automerge": true
}
]
}
}