-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "parser-combinators",
"version": "1.2.6",
"license": "ISC",
"maintainers": [
"Micha_i"
],
"repository": {
"type": "git",
"url": "git+https://github.com/michalusio/Parser.git"
},
"bugs": {
"url": "https://github.com/michalusio/Parser/issues"
},
"homepage": "https://github.com/michalusio/Parser#readme",
"description": "A library of parser combinators, with which you can create your own parsers. The library will be continuously improved in time.",
"scripts": {
"start": "tsc && node .",
"lint": "eslint src --ext .ts",
"build": "tsc",
"build-esm": "tsc --project tsconfig.esm.json",
"bundle": "npm run lint && npm run build && npm run build-esm",
"test:mutate": "stryker run",
"test:unit": "mocha",
"test": "nyc -e '.ts' --r html -r lcov -r text npm run test:unit"
},
"author": "Micha_i <isalski.michal@gmail.com> (https://github.com/michalusio)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@stryker-mutator/core": "^9.5.1",
"@stryker-mutator/mocha-runner": "^9.5.1",
"@stryker-mutator/typescript-checker": "^9.5.1",
"@types/mocha": "10.0.10",
"@types/node": "25.5.2",
"cross-env": "10.1.0",
"esbuild": "0.28.0",
"eslint": "9.39.2",
"mocha": "11.7.5",
"nyc": "18.0.0",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0"
},
"keywords": [
"parser",
"combinator",
"parser-combinator",
"parsing",
"combining",
"functional"
],
"prettier": {
"tabWidth": 4,
"useTabs": false
}
}