-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "agata",
"version": "2.4.2",
"description": "Hybrid dependency injection framework for server-side applications",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint .",
"coveralls": "pwd; cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioncreature/agata.git"
},
"author": "Aleksandr Marenin <it.is.amarenin@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ioncreature/agata/issues"
},
"homepage": "https://github.com/ioncreature/agata#readme",
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"glob": "7.2.3",
"lodash": "4.17.21",
"toposort": "2.0.2"
},
"devDependencies": {
"coveralls": "3.1.1",
"eslint": "8.19.0",
"eslint-config-agata": "0.4.0",
"jest": "28.1.3",
"prettier": "2.7.1"
},
"eslintConfig": {
"extends": "agata",
"env": {
"node": true
},
"rules": {}
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "avoid"
}
}