-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 5.44 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "thermostat-ng-web-client",
"version": "0.0.1",
"private": false,
"description": "",
"repository": {
"type": "hg",
"url": "https://icedtea.classpath.org/thermostat-ng/web-client"
},
"author": "",
"license": "",
"devDependencies": {
"@uirouter/angularjs": "^1.0.0",
"angular-mocks": "1.5.*",
"angular-patternfly": "^3.23.3",
"babel-core": "^6.24.0",
"babel-loader": "^7.0.0",
"babel-plugin-angularjs-annotate": "^0.7.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"big.js": "^3.1.3",
"css-loader": "^0.28.0",
"es6-promise": "^4.1.0",
"eslint": "^3.19.0",
"eslint-plugin-mocha": "^4.9.0",
"express-ws": "^3.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"font-awesome": "^4.7.0",
"glob": "^7.1.2",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"htmlhint": "^0.9.13",
"inject-loader": "^3.0.0",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-beep-reporter": "^0.1.4",
"karma-coverage-istanbul-reporter": "^1.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-should": "^1.0.0",
"karma-should-sinon": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"keycloak-js": "^3.0.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi": "^0.11.0",
"node-sass": "^4.5.2",
"null-loader": "^0.1.1",
"nyc": "^10.2.0",
"oclazyload": "^1.1.0",
"phantomjs-prebuilt": "^2.1.14",
"protractor": "^5.1.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"should": "^11.2.1",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"url-join": "^2.0.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"clean": "\"$(npm bin)/rimraf\" checkstyle coverage dist test-reports",
"license-check": "node license-check/perform-license-check.js",
"license-update": "node license-check/perform-license-update.js",
"prelint": "\"$(npm bin)/mkdirp\" checkstyle",
"lint-js": "\"$(npm bin)/eslint\" --ext '!.spec.js' -c .eslintrc.yaml src || npm run lint-js-checkstyle",
"lint-js-checkstyle": "\"$(npm bin)/eslint\" -c .eslintrc.yaml -f checkstyle -o checkstyle/checkstyle-src.xml src",
"lint-html": "\"$(npm bin)/htmlhint\" -c .htmlhintrc 'src/**/*.html' || npm run lint-html-checkstyle",
"lint-html-checkstyle": "\"$(npm bin)/htmlhint\" -c .htmlhintrc -f checkstyle 'src/**/*.html' > checkstyle/checkstyle-html.xml",
"lint-tests": "\"$(npm bin)/eslint\" -c .eslintrc.test.yaml src --ext .spec.js || npm run lint-test-checkstyle",
"lint-tests-checkstyle": "\"$(npm bin)/eslint\" -c .eslintrc.test.yaml --ext .spec.js -f checkstyle -o checkstyle/checkstyle-test.xml src",
"lint-itests": "\"$(npm bin)/eslint\" -c .eslintrc.test.yaml integration-test --ext .spec.js || npm run lint-itest-checkstyle",
"lint-itests-checkstyle": "\"$(npm bin)/eslint\" -c .eslintrc.test.yaml --ext .spec.js -f checkstyle -o checkstyle/checkstyle-itest.xml src",
"lint": "npm run lint-js && npm run lint-html",
"prebuild": "npm run clean && npm run license-check && npm run lint",
"build": "\"$(npm bin)/webpack\" --bail --progress --profile",
"postbuild": "npm test",
"stop-mockapi": "\"$(npm bin)\"/forever stop --silent mock-api/mockapi.server.js || true",
"prestart-mockapi": "npm run stop-mockapi",
"start-mockapi": "\"$(npm bin)\"/forever start --watch --watchDirectory mock-api mock-api/mockapi.server.js",
"predevserver": "npm run prebuild && npm run stop-daemon && npm run start-mockapi",
"devserver": "\"$(npm bin)/webpack-dev-server\" --progress",
"pretest": "npm run lint-tests",
"test": "\"$(npm bin)/karma\" start",
"pretest-watch": "npm run pretest",
"test-watch": "\"$(npm bin)/karma\" start --auto-watch --no-single-run",
"prestart-integration-test-server": "npm run stop-integration-test-server && \"$(npm bin)\"/webdriver-manager update",
"start-integration-test-server": "\"$(npm bin)\"/forever start -t \"$(npm bin)\"/webdriver-manager start",
"poststart-integration-test-server": "node integration-test/wait-for-selenium.js",
"stop-integration-test-server": "\"$(npm bin)\"/forever stop -t --silent \"$(npm bin)\"/webdriver-manager || true",
"poststop-integration-test-server": "\"$(npm bin)\"/webdriver-manager shutdown",
"preintegration-test": "npm run lint-itests && npm run start-integration-test-server",
"integration-test": "protractor integration-test/integration-test.config.js",
"postintegration-test": "npm run stop-integration-test-server",
"start": "npm run start-mockapi && npm run start-daemon",
"start-image": "node server.js",
"stop": "npm run stop-mockapi && npm run stop-daemon",
"prestart-daemon": "npm run stop-daemon",
"start-daemon": "\"$(npm bin)\"/forever start --watch server.js",
"stop-daemon": "\"$(npm bin)\"/forever stop --silent server.js || true",
"verify": "npm run build && npm start && npm run integration-test && npm run stop"
},
"dependencies": {
"compression": "^1.6.2",
"cors": "^2.8.3",
"express": "^4.15.2",
"forever": "^0.15.3",
"lodash": "^4.17.4"
}
}