-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.27 KB
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": "vacationexpenses",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"setup-dev-env": "npm install -g karma-cli@0.1.1 jasmine-node@1.14.5 protractor@2.0.0 && webdriver-manager update --standalone",
"start": "node server/server.js",
"test": "npm run server-unit-tests && npm run client-unit-tests && npm run client-e2e-tests",
"client-unit-tests": "karma start test/karma.conf.js --single-run",
"client-e2e-tests": "protractor test/protractor.conf.js",
"server-unit-tests": "jasmine-node test/server"
},
"repository": {
"type": "git",
"url": "https://github.com/seleborg/vacationexpenses.git"
},
"author": "Carl Seleborg",
"license": "ISC",
"bugs": {
"url": "https://github.com/seleborg/vacationexpenses/issues"
},
"homepage": "https://github.com/seleborg/vacationexpenses",
"dependencies": {
"azure-storage": "^0.4.2",
"body-parser": "^1.12.0",
"express": "^4.11.2",
"node-uuid": "^1.4.2",
"serve-static": "^1.8.1"
},
"engines": {
"node": ">=0.10.32 <0.12"
},
"devDependencies": {
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-jasmine": "^0.3.5",
"protractor": "^2.0.0",
"random-js": "^1.0.4"
}
}