-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.2 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
50
51
52
53
54
{
"name": "toscator",
"version": "0.0.1",
"description": "tosca compiler (part of leto project)",
"main": "index.js",
"directories": {
"test": "tests"
},
"type": "module",
"imports": {
"#src/*": "./src/*",
"#tests/*": "./tests/*"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest"
},
"dependencies": {
"ajv": "^8.11.0",
"lidy-js": "git+https://github.com/ditrit/lidy-js",
"regex": "^0.1.1",
"sync-request": "^6.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ditrit/toscator.git"
},
"keywords": [
"tosca",
"compiler",
"lidy",
"javascript",
"parser",
"yaml"
],
"author": "DitRit",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ditrit/toscator/issues"
},
"homepage": "https://github.com/ditrit/toscator#readme",
"devDependencies": {
"@jest/globals": "^29.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^46.5.0",
"jest": "^29.6.3"
},
"engines": {
"node": ">= 18.17.1",
"npm": ">= 9.6.7"
}
}