-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "exa-cuter",
"version": "1.0.0",
"description": "exalang parser written in typescript",
"main": "index.ts",
"scripts": {
"exec": "ts-node .",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ynx0/exa-cuter.git"
},
"keywords": [
"exapunks"
],
"author": "ynx0",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ynx0/exa-cuter/issues"
},
"homepage": "https://github.com/ynx0/exa-cuter#readme",
"dependencies": {
"arraybuffer-to-string": "latest",
"binary-file": "^0.2.1",
"hashmap": "^2.3.0",
"lodash": "^4.17.21",
"number-to-letter": "^1.0.1",
"ohm-js": "^0.14.0",
"queue-fifo": "^0.2.6"
},
"devDependencies": {
"@types/hashmap": "^2.0.29",
"@types/lodash": "^4.14.133",
"ava": "^2.0.0",
"execution-time": "^1.3.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}