forked from bakesaled/carbonate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@aneufeld/carbonate",
"version": "1.1.0",
"description": "A tool that converts financial data from OFX, QFX, or CSV into JSON. Forked from https://github.com/bakesaled/carbonate",
"author": {
"name": "Aaron Neufeld",
"email": "aaron.neufeld@uwaterloo.ca"
},
"license": "MIT",
"keywords": [
"TypeScript",
"Open Financial Exchange",
"financial transactions",
"OFX"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AaronNeufeld/carbonate.git"
},
"homepage": "https://github.com/AaronNeufeld/carbonate#readme",
"files": [
"dist"
],
"main": "dist/main.js",
"module": "dist/main.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"scripts": {
"_prebuild": "rimraf dist/*",
"build": "rollup -c",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"watch": "tsc-watch",
"start": "tsc-watch --onSuccess \"node ./dist/examples/index.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"test:ci": "npm run test:cov -- --runInBand --ci --logHeapUsage",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@types/xml2js": "^0.4.5",
"dayjs": "^1.8.26",
"prompts": "^2.3.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "25.1.1",
"@types/node": "^13.1.6",
"@types/prompts": "^2.0.3",
"jest": "^25.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.31.1",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "25.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.0",
"tsc-watch": "^4.1.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"stream": "~0.0.2",
"timers": "^0.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}