forked from ynagasaki/cashew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 960 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 960 Bytes
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
{
"name": "cashew",
"private": true,
"version": "0.0.0",
"description": "A private, personal budgeting webapp",
"repository": "https://github.com/ynagasaki/cashew.git",
"license": "MIT",
"devDependencies": {
"bower": "^1.3.1",
"jasmine-core": "^2.3.4",
"karma": "~0.12",
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.5",
"karma-junit-reporter": "^0.2.2",
"protractor": "^2.1.0",
"jshint": "^2.8.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "node cashew-server.js",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"test-single-run": "karma start karma.conf.js --single-run"
},
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"nano": "^6.1.5"
}
}