-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.35 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
{
"name": "leac",
"version": "0.6.0",
"description": "Lexer / tokenizer",
"keywords": [
"lexer",
"tokenizer",
"lex",
"token"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mxxii/leac.git"
},
"bugs": {
"url": "https://github.com/mxxii/leac/issues"
},
"homepage": "https://github.com/mxxii/leac",
"author": "KillyMXI",
"funding": "https://ko-fi.com/killymxi",
"license": "MIT",
"exports": {
"import": "./lib/leac.mjs",
"require": "./lib/leac.cjs"
},
"type": "module",
"main": "./lib/leac.cjs",
"module": "./lib/leac.mjs",
"types": "./lib/leac.d.ts",
"files": [
"lib"
],
"scripts": {
"build:docs": "typedoc --plugin typedoc-plugin-markdown",
"build:deno": "denoify",
"build:rollup": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly && rimraf lib/!(leac).d.ts",
"build": "npm run clean && concurrently npm:build:*",
"checkAll": "npm run lint && npm test",
"clean": "rimraf lib && rimraf docs && rimraf deno",
"example:calc": "npm run ts -- ./examples/calc.ts",
"example:json": "npm run ts -- ./examples/json.ts",
"lint:eslint": "eslint .",
"lint:md": "markdownlint-cli2",
"lint": "concurrently npm:lint:*",
"prepublishOnly": "npm run build && npm run checkAll",
"test": "ava",
"ts": "node --experimental-specifier-resolution=node --loader ts-node/esm"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@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",
"concurrently": "^8.0.1",
"denoify": "^1.5.6",
"eslint": "^8.41.0",
"eslint-plugin-jsonc": "^2.8.0",
"eslint-plugin-tsdoc": "^0.2.17",
"markdownlint-cli2": "^0.7.1",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typedoc": "~0.24.7",
"typedoc-plugin-markdown": "~3.15.3",
"typescript": "~4.9.5"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"test/**/*"
],
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"verbose": true
},
"denoify": {
"out": "./deno"
}
}