This repository was archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.35 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.35 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
98
99
100
101
102
103
104
{
"name": "jsonast",
"version": "0.2.1",
"description": "a json to ast parser which allows error recovery",
"main": "dist/src/index.js",
"typings": "./dist/src/index",
"files": [
"dist/src"
],
"scripts": {
"clean": "rimraf dist .nyc_output coverage",
"linter": "tslint --project ./tsconfig.json --type-check",
"prebuild": "yarn clean",
"build": "tsc --sourceMap",
"copyfixtures": "copyfiles test/**/*.json dist",
"pretest": "yarn build && yarn copyfixtures",
"test": "jest",
"watch:build": "tsc --sourceMap --watch",
"prewatch:test": "yarn copyfixtures",
"watch:test": "ava --watch",
"prerelease": "git checkout master && git pull origin master",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "knisterpeter/jsonast"
},
"keywords": [
"json",
"ast",
"parser",
"error-recovery",
"forgiving"
],
"author": {
"name": "Markus Wolf",
"email": "knister.peter@shadowrun-clan.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/knisterpeter/jsonast/issues"
},
"dependencies": {},
"devDependencies": {
"@knisterpeter/standard-tslint": "1.7.2",
"@types/jest": "28.1.3",
"@types/node": "16.11.42",
"copyfiles": "2.4.1",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"jest": "28.1.2",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.21",
"standard-version": "9.5.0",
"ts-jest": "28.0.5",
"tslint": "6.1.3",
"typescript": "4.7.4"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"renovate": {
"extends": [
"config:base"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"automerge": true
}
]
}
}