generated from norskeld/serpent
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
120 lines (120 loc) · 3.09 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@nrsk/sigma",
"version": "3.8.0",
"description": "TypeScript parser combinator library for building fast and convenient parsers.",
"packageManager": "[email protected]",
"sideEffects": false,
"type": "module",
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
},
"./combinators": {
"types": "./combinators.d.ts",
"import": "./combinators.js",
"require": "./combinators.cjs"
},
"./parsers": {
"types": "./parsers.d.ts",
"import": "./parsers.js",
"require": "./parsers.cjs"
}
},
"files": [
"CHANGELOG.md",
"*.d.ts",
"*.cjs*",
"*.js*"
],
"engines": {
"node": ">=18 <=20"
},
"scripts": {
"build": "tsup",
"fmt:lint": "eslint --fix --ext .js,.ts,.tsx .",
"fmt:prettier": "prettier --write \"**/*.{js,ts,tsx,json}\"",
"install:all": "npm install && npm run install:benchmarks && npm run install:docs",
"install:benchmarks": "cd benchmarks && npm install",
"install:docs": "cd docs && npm install",
"postversion": "tsx ../scripts/release.ts restore",
"prebuild": "rimraf dist",
"prepare": "is-ci || husky install",
"prerelease": "tsx scripts/release.ts prepare",
"release": "npx semantic-release",
"release:dry": "npx semantic-release --dry-run",
"test": "vitest",
"test:types": "vitest typecheck",
"test:coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norskeld/sigma.git"
},
"keywords": [
"typescript",
"parser-combinators",
"parser",
"combinators",
"parsec",
"bnf",
"ebnf",
"abnf"
],
"author": {
"name": "Vladislav Mamon",
"email": "[email protected]"
},
"contributors": [
"Vladislav Mamon <[email protected]>",
"Danil Tarasov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/norskeld/sigma/issues"
},
"homepage": "https://github.com/norskeld/sigma#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@nrsk/config-conventional": "^1.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/is-ci": "^3.0.0",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/coverage-istanbul": "^0.31.4",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.6",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.4"
},
"commitlint": {
"extends": [
"@nrsk/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}