-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
41 lines (41 loc) · 1000 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
34
35
36
37
38
39
40
41
{
"name": "eolang",
"version": "0.4.0",
"author": "Yegor Bugayenko <[email protected]> (https://www.yegor256.com/)",
"license": "MIT",
"repository": "objectionary/eoc",
"description": "A collection of command line tools for EOLANG: compiling, parsing, transpiling to other languages, optimizing, and analyzing",
"homepage": "https://github.com/objectionary/eoc",
"keywords": [
"cli",
"command",
"compiler",
"console",
"terminal",
"eoc",
"objectionary",
"oop"
],
"main": "eoc",
"bin": {
"eoc": "./src/eoc.js"
},
"dependencies": {
"colors": "1.4.0",
"commander": "9.2.0",
"fast-xml-parser": "4.0.0",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"eslint": "5.15.3",
"eslint-config-google": "0.12.0",
"grunt": "^1.5.3",
"grunt-contrib-clean": "2.0.0",
"grunt-eslint": "21.0.0",
"grunt-mocha-cli": "7.0.0",
"mocha": "^10.0.0"
},
"scripts": {
"test": "mocha --timeout 120000"
}
}