-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 753 Bytes
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
{
"name": "nevula",
"version": "0.5.1",
"description": "A (relatively) simple and (hopefully) performant markup parser",
"main": "publish/node/nevula.js",
"browser": "publish/esm/nevula.js",
"types": "publish/esm/nevula.d.ts",
"repository": "https://github.com/Brecert/nevula.git",
"author": "brecert <11599528+Brecert@users.noreply.github.com>",
"license": "MIT",
"files": [
"nevula.ts",
"publish/esm/*",
"publish/node/*"
],
"scripts": {
"build": "tsc --build tsconfig.esm.json && tsc --build tsconfig.node.json",
"bench": "deno run --allow-hrtime bench.ts",
"test": "deno test"
},
"keywords": [
"markup",
"language",
"parser"
],
"devDependencies": {
"typescript": "^4.2.3"
}
}