This repository has been archived by the owner on Feb 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.58 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
87
88
89
90
91
92
93
94
{
"name": "@eheikes/finances-visualizer",
"version": "0.2.0",
"description": "Visualize your finances",
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"lint": "tslint --project . --fix",
"publish": "github-pages -r eheikes/finances-visualizer -t $GITHUB_TOKEN ./dist",
"start": "http-server dist",
"test": "run-s test:*",
"test:e2e": "cross-env NODE_ENV=test JASMINE_CONFIG_PATH=./test/jasmine.json jasmine-ts \"test/e2e/*.spec.ts\"",
"test:unit": "cross-env NODE_ENV=test karma start test/karma.conf.js --single-run",
"test:unit:watch": "cross-env NODE_ENV=test karma start test/karma.conf.js --auto-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eheikes/finances-visualizer.git"
},
"keywords": [
"chart",
"finance",
"graph",
"quicken",
"visual"
],
"author": "Eric Heikes <eheikes@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eheikes/finances-visualizer/issues"
},
"homepage": "https://github.com/eheikes/finances-visualizer#readme",
"files": [
"dist"
],
"devDependencies": {
"@types/csv-parse": "^1.1.11",
"@types/highcharts": "^5.0.22",
"@types/jasmine": "^2.8.6",
"@types/lodash": "^4.8.3",
"@types/loglevel": "^1.5.3",
"@types/pify": "^3.0.1",
"@types/react": "^16.3.5",
"@types/react-dom": "^16.0.4",
"@types/sha1": "^1.1.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.5",
"csv-parse": "^2.2.0",
"gazeall": "^0.3.7",
"github-pages": "^3.0.2",
"highcharts": "^6.1.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"jasmine-core": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.2.1",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^3.0.12",
"karma-typescript-mock": "^1.0.1",
"lodash": "^4.8.0",
"loglevel": "^1.6.1",
"npm-run-all": "^4.1.2",
"pify": "^3.0.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-highcharts": "^16.0.2",
"setimmediate": "^1.0.5",
"sha1": "^1.1.1",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"resolutions": {
"upath": "1.0.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard": {
"env": {
"jasmine": true,
"node": true
}
},
"dependencies": {}
}