-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 867 Bytes
/
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
{
"name": "personal-finance",
"version": "0.0.1",
"description": "JavaScript personal finance app - budget, set goals, build savings, and eliminate debt.",
"keywords" : [ "personal-finance", "budget", "budget-management", "debt-manager", "money-manager" ],
"repository": {
"type": "git",
"url": "https://github.com/dragthor/personal-finance.git"
},
"main": "src/main.js",
"scripts": {
"start": "electron .",
"test" : "mocha --reporter progress \"tests/**/*.test.js\""
},
"author": "Kris Krause",
"license": "MIT",
"engines": {
"node" : ">=6.9.5",
"npm": ">=3.10.10"
},
"dependencies": {
"chalk": "1.1.3",
"electron": "1.6.2",
"node-json-db" : "0.7.3"
},
"devDependencies": {
"chalk": "1.1.3",
"chai": "3.5.0",
"mocha": "3.2.0",
"electron": "1.6.2",
"node-json-db" : "0.7.3"
}
}