forked from objectionary/eoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.79 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"author": "Yegor Bugayenko <yegor256@gmail.com> (https://www.yegor256.com/)",
"bin": {
"eoc": "./src/eoc.js"
},
"dependencies": {
"@langchain/core": "^0.3.55",
"@langchain/openai": "^0.6.0",
"colors": "^1.4.0",
"commander": "^12.1.0",
"eo2js": "^0.0.8",
"fast-xml-parser": "^5.2.3",
"marked": "^4.3.0",
"relative": "^3.0.2",
"semver": "^7.7.2",
"sync-request": "^6.1.0",
"xmlhttprequest": "^1.8.0"
},
"description": "A collection of command line tools for EOLANG: compiling, parsing, transpiling to other languages, optimizing, and analyzing",
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.28.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-promise": "^7.2.1",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-eslint": "^26.0.0",
"grunt-mocha-cli": "^7.0.0",
"istanbul": "^0.4.5",
"mocha": "^11.5.0",
"nyc": "^18.0.0",
"patch-package": "^8.0.0"
},
"engines": {
"node": ">6.0",
"npm": ">8.0"
},
"homepage": "https://github.com/objectionary/eoc",
"keywords": [
"cli",
"command",
"compiler",
"console",
"terminal",
"eoc",
"objectionary",
"oop"
],
"license": "MIT",
"main": "eoc",
"name": "eolang",
"nyc": {
"all": true,
"exclude": [
"test/**",
"**/*.test.js"
],
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
]
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": "objectionary/eoc",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha test/**/*.js --timeout 1200000",
"postinstall": "node scripts/postinstall.js",
"test": "mocha 'test/**/*.js' --timeout 1200000"
},
"version": "0.0.0"
}