This repository has been archived by the owner on Jan 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 2.22 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "neon-gtd",
"shortDescription": "Neon Geo Temporal Dashboard",
"description": "A sample geo-temporal analysis dashboard that uses the neon.js library to show interactions between multiple visualizations of a dataset.",
"version": "1.4.0-SNAPSHOT",
"repository": {
"type": "git",
"url": "https://github.com/NextCenturyCorporation/neon-gtd"
},
"license": "Apache v2",
"private": true,
"devDependencies": {
"bower": "1.4.1",
"grunt": "0.4.5",
"grunt-angular-templates": "0.5.9",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "0.8.2",
"grunt-contrib-cssmin": "0.14.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-less": "1.0.0",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.0.0",
"grunt-contrib-yuidoc": "1.0.0",
"grunt-eol": "0.2.0",
"grunt-exec": "0.4.6",
"grunt-git-describe": "2.3.2",
"grunt-injector": "0.6.1",
"grunt-jscs": "2.8.0",
"grunt-karma": "1.0.0",
"grunt-spritesmith": "5.2.0",
"grunt-usemin": "2.1.1",
"grunt-war": "0.4.5",
"grunt-wiredep": "2.0.0",
"http-server": "0.8.0",
"jasmine-core": "2.4.1",
"karma": "0.13.22",
"karma-chrome-launcher": "0.1.8",
"karma-jasmine": "^1.0.2",
"karma-junit-reporter": "1.1.0",
"karma-ng-html2js-preprocessor": "0.1.2",
"karma-phantomjs-launcher": "1.0.0",
"phantomjs-prebuilt": "2.1.10",
"shelljs": "0.4.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",
"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');\""
}
}