-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.39 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": "@vladbatushkov/barista",
"version": "0.1.0",
"description": "Brew a graph of your client-side codebase using Madge & Neo4j",
"main": "./src/index.ts",
"dependencies": {
"glob": "^7.1.7",
"madge": "^5.0.1",
"neo4j-driver": "^4.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"scripts": {
"build": "tsc",
"barista": "tsc && node -e \"var main = require('./dist/index.js'); main.default().then(() => { process.exit(); });\"",
"test": "jest --config ./jest.config.js --coverage",
"lint": "eslint --ext .ts --ignore-path .gitignore ./src/",
"prepare": "husky install"
},
"husky": {},
"repository": {
"type": "git",
"url": "git+https://github.com/vladbatushkov/barista.git"
},
"keywords": [
"ts",
"neo4j",
"madge"
],
"author": "Vlad Batushkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladbatushkov/barista/issues"
},
"homepage": "https://github.com/vladbatushkov/barista#readme"
}