-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.18 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
{
"name": "peberminta",
"version": "0.9.0",
"description": "Simple, transparent parser combinators toolkit that supports any tokens",
"keywords": [
"parser",
"parser-combinators",
"parsec"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mxxii/peberminta.git"
},
"bugs": {
"url": "https://github.com/mxxii/peberminta/issues"
},
"homepage": "https://github.com/mxxii/peberminta",
"author": "KillyMXI",
"funding": "https://ko-fi.com/killymxi",
"license": "MIT",
"exports": {
".": {
"import": "./lib/core.mjs",
"require": "./lib/core.cjs"
},
"./char": {
"import": "./lib/char.mjs",
"require": "./lib/char.cjs"
}
},
"type": "module",
"main": "./lib/core.cjs",
"module": "./lib/core.mjs",
"types": "./lib/core.d.ts",
"typesVersions": {
"*": {
"char": [
"./lib/char.d.ts"
],
"*": [
"./lib/core.d.ts"
]
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build:docs": "typedoc",
"build:deno": "denoify",
"build:rollup": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly && rimraf lib/util.d.ts",
"build": "npm run clean && concurrently npm:build:*",
"checkAll": "npm run lint && npm test",
"clean": "rimraf lib && rimraf docs && rimraf deno",
"cover": "c8 --reporter=lcov --reporter=text-summary ava \"test/!(examples).ts\" --timeout=60s",
"example:bf1": "npm run ts -- ./examples/bf1.ts",
"example:bf2": "npm run ts -- ./examples/bf2.ts",
"example:calc": "npm run ts -- ./examples/calc.ts",
"example:csv": "npm run ts -- ./examples/csv.ts",
"example:hexColor": "npm run ts -- ./examples/hexColor.ts",
"example:json": "npm run ts -- ./examples/json.ts",
"example:nonDec": "npm run ts -- ./examples/nonDec.ts",
"lint:eslint": "eslint .",
"lint:md": "markdownlint-cli2",
"lint": "concurrently npm:lint:*",
"prepublishOnly": "npm run build && npm run checkAll",
"test:ava": "ava --timeout=20s",
"test:tsc": "tsc --noEmit --project tsconfig.tsc.json",
"test": "concurrently npm:test:*",
"ts": "node --experimental-specifier-resolution=node --loader ts-node/esm"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@tsconfig/node14": "^1.0.3",
"@types/node": "14.18.47",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"ava": "^5.3.0",
"c8": "^7.13.0",
"concurrently": "^8.0.1",
"denoify": "^1.5.6",
"eslint": "^8.41.0",
"eslint-plugin-jsonc": "^2.8.0",
"eslint-plugin-tsdoc": "^0.2.17",
"expect-type": "^0.15.0",
"leac": "^0.6.0",
"markdownlint-cli2": "^0.7.1",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typedoc": "~0.23.28",
"typescript": "~4.9.5"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"test/**/*"
],
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"verbose": true
},
"denoify": {
"out": "./deno"
}
}