-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "balances-cli",
"version": "0.0.1",
"description": "CLI to process transactions",
"main": "./dist/index.js",
"bin": {
"balances": "./dist/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest --config ./jest.config.js",
"test:watch": "npm run test -- --watch",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "sudo npm i -g && balances",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"balances": "node dist/index.js"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/FranRom/transactions-cli.git"
},
"author": "Franatic",
"license": "MIT",
"bugs": {
"url": "https://github.com/FranRom/transactions-cli/issues"
},
"homepage": "https://github.com/FranRom/transactions-cli#readme",
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^9.4.0",
"console-table-printer": "^2.11.1",
"date-fns": "^2.29.2",
"figlet": "^1.5.2",
"path": "^0.12.7"
},
"devDependencies": {
"@gmrchk/cli-testing-library": "^0.1.2",
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.5",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.15",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}