-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.4 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.4 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
{
"name": "@ntix/parsing",
"version": "1.2.0",
"type": "module",
"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 --noHeader -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",
"clean": "shx rm -rf dist",
"format": "eslint src --fix",
"pretest": "npm run barrels",
"test": "jest",
"test.coverage": "jest --coverage",
"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 <npm@antix.co.uk> (http://antix.co.uk)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@rollup/wasm-node": "^4.56.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"barrelsby": "^2.8.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"semantic-release": "^25.0.2",
"serve": "^14.2.5",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"typedoc": "^0.28.16",
"typescript": "^5.9.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"
}
},
"dependencies": {
"typescript-eslint": "^8.53.1"
}
}