-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (79 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "openolitor-core",
"version": "2.9.3",
"description": "OpenOlitor Client Core Module",
"repository": {
"type": "https",
"url": "https://github.com/OpenOlitor/openolitor-client-core.git"
},
"license": "AGPL v3",
"dependencies": {
"angular-qrcode": "^7.2.0",
"file-saver": "^2.0.5",
"pako": "^2.1.0"
},
"devDependencies": {
"bower": "1.8.14",
"bower-npm-resolver": "^0.11.0",
"grunt": "^1.5.3",
"grunt-angular-gettext": "^2.5.3",
"grunt-angular-templates": "^1.2.0",
"grunt-autoprefixer": "^3.0.4",
"grunt-concurrent": "^3.0.0",
"grunt-connect-proxy": "^0.2.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-symlink": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-filerev": "^2.3.1",
"grunt-istanbul": "^0.8.0",
"grunt-karma": "^4.0.2",
"grunt-newer": "^1.3.0",
"grunt-ng-annotate": "^3.0.0",
"grunt-replace": "^2.0.2",
"grunt-rev": "~0.1.0",
"grunt-sass": "^3.1.0",
"grunt-svgmin": "^6.0.1",
"grunt-usemin": "^3.1.1",
"grunt-wiredep": "^3.0.1",
"http-server": "^14.1.1",
"jasmine-core": "^4.5.0",
"jshint-stylish": "^2.2.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"load-grunt-tasks": "^5.1.0",
"node-sass": "^8.0.0",
"phantomjs-prebuilt": "^2.1.16",
"shelljs": "^0.8.5",
"time-grunt": "^1.4.0"
},
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server app -a localhost -p 3000",
"pretest": "npm install",
"test": "karma start test/karma.conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/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' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index.html');\""
}
}