-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.39 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.39 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
{
"name": "anascript",
"version": "0.6.1",
"license": "ISC",
"author": "Jonathan Claggett",
"email": "jonathan@claggett.org",
"url": "https://github.com/jclaggett/anascript",
"bugs": {
"url": "https://github.com/jclaggett/anascript/issues",
"email": "jonathan@claggett.org"
},
"description": "Anascript, a small experimental language.",
"keywords": [
"anascript",
"json",
"lisp"
],
"type": "module",
"main": "src/index.js",
"bin": {
"anascript": "src/repl.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint src",
"start": "node src/repl.js",
"start-inspect": "node --inspect src/repl.js",
"repl": "node src/node-repl.js"
},
"dependencies": {
"chalk": "^4.1.2",
"ebnf": "^1.9.1",
"highlight-es": "^1.0.3",
"immutable": "^4.3.1",
"marked": "^7.0.0",
"marked-terminal": "^5.2.0",
"print-tree": "^0.1.5"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"typescript": "^5.1.6"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}