forked from terrestris/SolrHeatmap
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "angular-search",
"private": true,
"version": "0.0.1",
"description": "Solr-Heatmap-Client based on AngularJS and OL3",
"homepage": "http://terranodo.io/angular-search",
"author": {
"name": "Andre Henn",
"url": "https://github.com/ahennr"
},
"repository": {
"type": "git",
"url": "https://github.com/terranodo/angular-search"
},
"bugs": {
"url": "https://github.com/terranodo/angular-search/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT/"
}
],
"keywords": [
"Apache Solr",
"OpenLayers 3",
"Heatmap"
],
"scripts": {
"clean": "grunt clean",
"settings": "node settings.js",
"js-lint": "eslint ./",
"test": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"test:unit": "./node_modules/karma/bin/karma start --browsers PhantomJS --auto-watch",
"lintest": "npm run js-lint && npm run test",
"serve": "http-server -p 3001",
"server": "parallelshell 'npm run settings' 'npm run serve -s' 'grunt dev-watch -s'",
"deploy": "npm run settings && grunt deploy",
"publish": "npm run settings && grunt publish"
},
"devDependencies": {
"angular-mocks": "^1.5.5",
"angular-ui-bootstrap": "^1.3.3",
"angularjs-slider": "^5.5.0",
"codeclimate-test-reporter": "^0.3.3",
"eslint": "^2.13.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.3.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-gh-pages": "1.1.0",
"grunt-html2js": "^0.3.6",
"http-server": "^0.9.0",
"jasmine-core": "^2.5.0",
"karma": "^1.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"less-plugin-clean-css": "^1.5.1",
"parallelshell": "^2.0.0"
}
}