-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "crowdnode-to-bitcointax",
"version": "1.0.0",
"description": "convert csv from crodwnode to csv that will work with bitciontax income",
"license": "MIT",
"author": "[email protected]",
"main": "index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc -p .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node dist/index.js",
"pretest": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"csv-parse": "^4.14.2",
"csv-stringify": "^5.6.0",
"moment": "^2.29.1",
"winston": "3.3.3"
},
"devDependencies": {
"@types/node": "14.14.10",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"ts-node": "9.0.0",
"typescript": "4.1.2"
},
"engines": {
"node": "14.x"
}
}