This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
140 lines (140 loc) · 5.42 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "cf-abacus-broker",
"description": "CF Abacus Broker",
"license": "Apache-2.0",
"version": "1.1.0",
"private": true,
"homepage": "https://github.com/cloudfoundry-incubator/cf-abacus-broker",
"bugs": {
"url": "https://github.com/cloudfoundry-incubator/cf-abacus-broker/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/cloudfoundry-incubator/cf-abacus.git"
},
"keywords": [
"cf",
"abacus"
],
"files": [
".eslintrc",
".jshintrc",
".jsinspectrc",
".npmrc",
".travis.yml",
"LICENSE",
"NOTICE",
"bin/",
"etc/",
"lib/"
],
"scripts": {
"acceptance": "export JOBS=1 && foreach tests node_modules/:name yarn run acceptance --",
"bootstrap": "yarn add check-node-version && check-node-version --package",
"update-dependencies": "bin/update-dependencies",
"provision": "yarn run bootstrap && yarn install && cp etc/apps.rc node_modules/abacus-etc",
"build": "yarn run provision && yarn test",
"clean": "git clean -df",
"rebuild": "yarn run clean && yarn run build",
"lint": "foreach abacus-ext :path yarn run lint",
"hint": "foreach abacus-ext :path jshint src",
"test": "foreach abacus-ext node_modules/:name yarn test --",
"citest": "bin/citest",
"cftest": "bin/cftest",
"cibuild": "yarn run build && yarn run citest && yarn run cftest",
"generate-coverage": "foreach abacus-ext node_modules/:name yarn run generate-coverage --",
"report-coverage": "lcov-result-merger 'node_modules/**/coverage/lcov.info' coverage.out && codecov",
"dupcode": "jsinspect",
"doc": "cat README.md | mddoc >README.html && cat CHANGES.md | mddoc >CHANGES.html",
"start": "bin/start",
"stop": "bin/stop",
"restart": "bin/restart",
"demo": "bin/demo",
"dupe": "bin/dupe",
"perf": "bin/perf",
"itest": "export JOBS=1 && foreach itest node_modules/:name yarn run itest --",
"smoke": "export JOBS=1 && foreach smoke node_modules/:name yarn run smoke --",
"pub": "foreach abacus-ext :path yarn run pub && publish",
"cfpush": "cfpush",
"cfstage": "bin/cfstage",
"cfdelete": "bin/cfdelete",
"cfstart": "bin/cfstart",
"cfstop": "bin/cfstop"
},
"dependencies": {
"abacus-audit": "file:abacus/lib/utils/audit",
"abacus-batch": "file:abacus/lib/utils/batch",
"abacus-breaker": "file:abacus/lib/utils/breaker",
"abacus-cluster": "file:abacus/lib/utils/cluster",
"abacus-cmdline": "file:abacus/tools/cmdline",
"abacus-couchclient": "file:abacus/lib/utils/couchclient",
"abacus-couchstore": "file:abacus/lib/utils/couchstore",
"abacus-dbclient": "file:abacus/lib/utils/dbclient",
"abacus-debug": "file:abacus/lib/utils/debug",
"abacus-eureka-plugin": "file:abacus/lib/plugins/eureka",
"abacus-events": "file:abacus/lib/utils/events",
"abacus-express": "file:abacus/lib/utils/express",
"abacus-ext-account-plugin": "file:lib/plugins/account",
"abacus-ext-cf-broker": "file:lib/cf/broker",
"abacus-ext-cf-broker-tests": "file:test/broker",
"abacus-ext-healthchecker": "file:lib/extensions/healthchecker",
"abacus-ext-housekeeper": "file:lib/extensions/housekeeper",
"abacus-ext-provisioning-itest": "file:test/provisioning",
"abacus-ext-provisioning-plugin": "file:lib/plugins/provisioning",
"abacus-ext-service-dashboard": "file:lib/cf/dashboard",
"abacus-ext-test-utils": "file:test/test-utils",
"abacus-hystrix": "file:abacus/lib/utils/hystrix",
"abacus-launcher": "file:abacus/lib/utils/launcher",
"abacus-lock": "file:abacus/lib/utils/lock",
"abacus-lrucache": "file:abacus/lib/utils/lrucache",
"abacus-mongoclient": "file:abacus/lib/utils/mongoclient",
"abacus-oauth": "file:abacus/lib/utils/oauth",
"abacus-partition": "file:abacus/lib/utils/partition",
"abacus-perf": "file:abacus/lib/utils/perf",
"abacus-plan-mappings": "file:abacus/lib/config/mappings",
"abacus-rc": "file:abacus/lib/utils/rc",
"abacus-request": "file:abacus/lib/utils/request",
"abacus-retry": "file:abacus/lib/utils/retry",
"abacus-router": "file:abacus/lib/utils/router",
"abacus-schema": "file:abacus/lib/utils/schema",
"abacus-transform": "file:abacus/lib/utils/transform",
"abacus-urienv": "file:abacus/lib/utils/urienv",
"abacus-usage-schemas": "file:abacus/lib/config/schemas",
"abacus-vcapenv": "file:abacus/lib/utils/vcapenv",
"abacus-webapp": "file:abacus/lib/utils/webapp",
"abacus-yieldable": "file:abacus/lib/utils/yieldable",
"underscore": "^1.8.3"
},
"devDependencies": {
"abacus-cfpush": "file:abacus/tools/cfpush",
"abacus-eslint": "file:abacus/tools/eslint",
"abacus-etc": "file:abacus/etc",
"abacus-mddoc": "file:abacus/tools/mddoc",
"abacus-mocha": "file:abacus/tools/mocha",
"abacus-publish": "file:abacus/tools/publish",
"chai-as-promised": "^7.1.1",
"chai-http": "3.0.0",
"check-node-version": "^3.2.0",
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"jasmine-core": "2.5.2",
"jshint": "^2.8.0",
"jsinspect": "^0.6.1",
"karma": "1.5.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-phantomjs-launcher": "1.0.3",
"karma-read-json": "1.1.0",
"lcov-result-merger": "^1.2.0",
"nock": "9.0.2",
"nyc": "^11.4.1",
"proxyquire": "1.5.0",
"tmp": "0.0.31"
},
"engines": {
"node": ">=8.9.4 <9.0.0",
"npm": "<5.0.0",
"yarn": ">=1.2.1"
}
}