This repository was archived by the owner on Apr 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.83 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.83 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
43
{
"name": "data-sphere",
"shortDescription": "A VR playground for viewing data visualizations beyond the bounds of monitor's form factor.",
"description": "A VR playground for viewing data visualizations beyond the bounds of monitor's form factor. This project attempts to combine VR technologies with data visualizations to explore new ways to look at data.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": ""
},
"license": "",
"private": true,
"devDependencies": {
"grunt": "~0.4.1",
"grunt-bower-task": "0.4.0",
"grunt-cli": "~0.1.6",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-connect": "0.8.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-watch": "0.6.0",
"grunt-contrib-yuidoc": "~0.5.2",
"grunt-war": "0.3.3",
"karma": "~0.10",
"protractor": "1.3.1",
"http-server": "^0.6.1",
"bower": "^1.3.1",
"shelljs": "^0.2.6",
"karma-junit-reporter": "0.2.2",
"grunt-jscs": "=0.8.0"
},
"scripts": {
"postinstall": "",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map','app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}