-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 908 Bytes
/
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
{
"name": "dfa",
"version": "1.0.0",
"description": "This interpreter provides a simple deterministic finite automata (DFA) implementation in python. This makes it much slower because the overhead of starting python is pretty high. This would be less of a big deal for more complicated plugins.",
"main": "dfa-interpreter.ts",
"scripts": {
"test": "python test_interpreter.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2graphic/sinap-core.git"
},
"keywords": [
"sinap",
"dfa",
"flap"
],
"author": "2graphic",
"license": "MIT",
"bugs": {
"url": "https://github.com/2graphic/sinap-core/issues"
},
"homepage": "https://github.com/2graphic/sinap-core#readme",
"sinap": {
"kind": [
"Formal Languages",
"DFA (python)"
],
"plugin-file": "helper.py",
"types-file": "types.js",
"loader": "python"
}
}