This repository has been archived by the owner on Jun 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
106 lines (106 loc) · 3.81 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
{
"name": "angular-vertxbus",
"version": "6.4.1",
"description": "AngularJS facade and service acting as a Vert.x SockJS client",
"main": "dist/angular-vertxbus.js",
"keywords": [
"angular",
"vertx",
"facade",
"websocket"
],
"engines": {
"node": ">*"
},
"devEngines": {
"node": ">=8.9",
"npm": ">=5.3"
},
"scripts": {
"check-env": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"clean": "grunt clean",
"clean-test-scopes": "for f in test_scopes/*; do (cd $f; rm -rf bower_components); done",
"prepare": "bower install",
"lint": "eslint --ignore-pattern node_modules/**,bower_components/** --ext .js src/** *.js",
"test-headless": "karma start --browsers='PhantomJS' karma.conf.js",
"test-karma": "karma start karma.conf.js",
"test": "npm run -s check-env && npm run -s lint && grunt install-test && npm run -s test-karma",
"test-scopes": "grunt install-test && for f in test_scopes/*; do TEST_SCOPE=\"`basename $f`\" npm run -s test; done",
"start-it-web-server": "babel-node test/e2e/server.js",
"install-it-vertx-server": "cd test/e2e/vertx && ./install-vertx.sh",
"start-it-vertx-server": "cd test/e2e/vertx/app && ../runtime/vertx/bin/vertx run vertx3-config.js",
"start-server": "npm-run-all --silent clean compile-dist install-it-vertx-server --parallel start-it-vertx-server start-it-web-server",
"compile-dist": "webpack",
"compile-distmin": "BUILD_MINIFIED=1 webpack",
"compile": "grunt clean && npm run -s compile-dist && npm run -s compile-distmin && grunt build-post",
"build": "npm run -s check-env && npm run -s test && npm run -s compile",
"release": "npm run -s clean && npm run -s build && grunt release",
"upload-github-release": "node build_tools/upload-github-release.js",
"docs": "grunt docs"
},
"author": {
"name": "Jan Philipp",
"email": "[email protected]"
},
"homepage": "https://github.com/knalli/angular-vertxbus",
"repository": {
"type": "git",
"url": "git://github.com/knalli/angular-vertxbus"
},
"license": "MIT",
"devDependencies": {
"adm-zip": "^0.4.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bower": "1.8.2",
"browserslist": "^3.1.1",
"eslint": "^4.18.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-angular": "^3.2.0",
"estraverse": "^4.1.0",
"express": "^4.16.2",
"fbjs-scripts": "^0.8.0",
"grunt": "^1.0.2",
"grunt-babel": "^7.0.0",
"grunt-bower-install-simple": "~1.2.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-ngdocs": "^0.2.11",
"imports-loader": "^0.8.0",
"istanbul": "^0.4.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.99.1",
"jasmine-webpack-plugin": "^0.1.1",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-coverage-istanbul-reporter": "^1.4.1",
"karma-expect": "~1.1.3",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "^1.1.1",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"load-grunt-tasks": "^3.3.0",
"lodash": "^4.17.5",
"mocha": "^5.0.1",
"ng-annotate-webpack-plugin": "^0.2.0",
"npm-run-all": "^4.1.2",
"phantomjs-prebuilt": "^2.1.16",
"publish-release": "^1.5.0",
"rimraf": "^2.6.2",
"tar.gz": "^1.0.7",
"transform-loader": "^0.2.3",
"webpack": "^3.11.0"
}
}