-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (58 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (58 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cloudberry",
"description": "Cloudberry is application for managing and sharing documents in the web",
"version": "1.0.0",
"revision": "1",
"keywords": ["cloudberry", "cloud", "document", "share"],
"homepage": "http://www.cloudberryapp.com/",
"author": "Samuli Järvelä",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/sjarvela/cloudberry.git"
},
"licenses": [{
"type": "GPLv2",
"url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"
}],
"devDependencies": {
"grunt": "*",
"grunt-banner": "",
"grunt-contrib-clean": "",
"grunt-contrib-concat": "",
"grunt-contrib-connect": "",
"grunt-contrib-copy": "",
"grunt-contrib-csslint": "",
"grunt-contrib-cssmin": "",
"grunt-contrib-jade": "",
"grunt-contrib-jshint": "",
"grunt-contrib-less": "",
"grunt-contrib-qunit": "",
"grunt-contrib-uglify": "",
"grunt-contrib-watch": "",
"grunt-contrib-compress": "",
"grunt-csscomb": "",
"grunt-exec": "",
"grunt-jscs-checker": "",
"grunt-sed": "",
"grunt-phpunit": "*",
"grunt-angular-gettext": "*",
"load-grunt-tasks": "",
"karma": "~0.10",
"protractor": "~0.17.0",
"http-server": "0.6.1",
"bower": "1.3.4",
"shelljs": "0.3.0"
},
"scripts": {
"postinstall": "bower install",
"start": "http-server -p 8000",
"test": "karma start test/karma.conf.js",
"update-webdriver": "webdriver-manager update",
"protractor": "protractor test/protractor-conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}