-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (29 loc) · 884 Bytes
/
package.json
File metadata and controls
32 lines (29 loc) · 884 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
{
"name": "web-ui",
"private": true,
"version": "0.0.1",
"description": "Web UI to manage CloudOpting platform",
"author": "Xavier Cases Camats <xavier.cases.external@atos.net>",
"repository": {
"type": "git",
"url": "https://github.com/CloudOpting/cloudopting-manager-webui"
},
"bugs": {
"url": "https://github.com/CloudOpting/cloudopting-manager-webui/issues"
},
"devDependencies": {
"lodash": "latest",
"karma-chrome-launcher": "latest",
"karma-firefox-launcher": "latest",
"karma": "^0.12.31",
"karma-jasmine": "0.2.0"
},
"scripts": {
"prestart": "bower install && npm install",
"start": "http-server -a localhost -p 8000",
"pretest": "bower install && npm install",
"test": "karma start test/karma.conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run"
},
"license": "MIT"
}