forked from ntix/parsing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.56 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
91
92
93
94
95
96
97
98
{
"name": "@ntix/parsing",
"version": "1.2.0",
"description": "a small parser",
"repository": {
"url": "https://github.com/ntix/parsing",
"type": "git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.umd.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"barrels": "barrelsby -q --delete --directory src --include \\.ts$ --exclude \"(\\.spec|this)\\.ts$\" --location all",
"prebuild": "npm run clean && npm run barrels",
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"build.docs": "npm run build && typedoc --exclude \"**/*+(index|.spec|.e2e).ts\" --out docs src --readme README.md --media dist",
"clean": "shx rm -rf dist",
"format": "eslint src --fix",
"pretest": "npm run barrels",
"test": "jest",
"test.coverage": "jest --coverage",
"test.debug": "jest --runInBand",
"test.watch": "jest --watchAll",
"start": "npm run build.docs && serve docs",
"commit": "git add . && npx git-cz",
"prepublishOnly": "npm run build.docs",
"semantic-release": "semantic-release"
},
"keywords": [
"parse",
"parser",
"parsing",
"schema parsing",
"validate",
"validating",
"validation",
"schema validation"
],
"author": "Anthony Johnston <[email protected]> (http://antix.co.uk)",
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/wasm-node": "^4.9.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"barrelsby": "^2.8.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"semantic-release": "^23.0.0",
"serve": "^14.2.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/index.ts"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
],
"moduleNameMapper": {
"(.*)\\.js": "$1"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}